You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/no-response.yaml
+4-2Lines changed: 4 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ name: No Response
9
9
10
10
on:
11
11
issue_comment:
12
-
types: created
12
+
types: [created]
13
13
14
14
schedule:
15
15
# Schedule for five minutes after the hour every hour
@@ -27,4 +27,6 @@ jobs:
27
27
to our request for more information from the original author. With only the
28
28
information that is currently in the issue, we don't have enough information
29
29
to take action. Please reach out if you have or find the answers we need so
30
-
that we can investigate further. See [this blog post on bug reports and the importance of repro steps](https://www.lee-dohm.com/2015/01/04/writing-good-bug-reports/) for more information about the kind of information that may be helpful.
30
+
that we can investigate further. See [this blog post on bug reports and the
31
+
importance of repro steps](https://www.lee-dohm.com/2015/01/04/writing-good-bug-reports/)
32
+
for more information about the kind of information that may be helpful.
- "[Using workflow run logs](/actions/managing-workflow-runs/using-workflow-run-logs#viewing-logs-through-github-cli)"
36
-
- "[Viewing workflow run history](/actions/managing-workflow-runs/viewing-workflow-run-history#viewing-workflow-run-history-with-github-cli)"
37
-
- "[Disabling and enabling a workflow](/actions/managing-workflow-runs/disabling-and-enabling-a-workflow#disabling-and-enabling-workflows-through-github-cli)"
36
+
- "[Viewing workflow run history](/actions/managing-workflow-runs/viewing-workflow-run-history#viewing-workflow-run-history-with-github-cli)"{% if currentVersion == "free-pro-team@latest" or currentVersion ver_gt "enterprise-server@2.22" or currentVersion == "github-ae@latest" %}
37
+
- "[Disabling and enabling a workflow](/actions/managing-workflow-runs/disabling-and-enabling-a-workflow#disabling-and-enabling-workflows-through-github-cli)"{% endif %}
Copy file name to clipboardExpand all lines: content/admin/enterprise-management/increasing-storage-capacity.md
+12-3Lines changed: 12 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,7 +31,10 @@ As more users join {% data variables.product.product_location %}, you may need t
31
31
1. Resize the existing user volume disk using your virtualization platform's tools.
32
32
{% data reusables.enterprise_installation.ssh-into-instance %}
33
33
3. Put the appliance in maintenance mode. For more information, see "[Enabling and scheduling maintenance mode](/enterprise/{{ currentVersion }}/admin/guides/installation/enabling-and-scheduling-maintenance-mode)."
34
-
4. Reboot the appliance to detect the new storage allocation.
34
+
4. Reboot the appliance to detect the new storage allocation:
35
+
```shell
36
+
$ sudo reboot
37
+
```
35
38
5. Run the `ghe-storage-extend` command to expand the `/data/user` filesystem:
36
39
```shell
37
40
$ ghe-storage-extend
@@ -40,7 +43,10 @@ As more users join {% data variables.product.product_location %}, you may need t
40
43
### Increasing the root partition size using a new appliance
41
44
42
45
1. Set up a new {% data variables.product.prodname_ghe_server %} instance with a larger root disk using the same version as your current appliance. For more information, see "[Setting up a {% data variables.product.prodname_ghe_server %} instance](/enterprise/{{ currentVersion }}/admin/guides/installation/setting-up-a-github-enterprise-server-instance)."
43
-
2. Shut down the current appliance.
46
+
2. Shut down the current appliance:
47
+
```shell
48
+
$ sudo poweroff
49
+
```
44
50
3. Detach the data disk from the current appliance using your virtualization platform's tools.
45
51
4. Attach the data disk to the new appliance with the larger root disk.
46
52
@@ -57,6 +63,9 @@ As more users join {% data variables.product.product_location %}, you may need t
57
63
```shell
58
64
$ ghe-upgrade PACKAGE-NAME.pkg -s -t /dev/xvdg1
59
65
```
60
-
4. Shut down the appliance.
66
+
4. Shut down the appliance:
67
+
```shell
68
+
$ sudo poweroff
69
+
```
61
70
5. In the hypervisor, remove the old root disk and attach the new root disk at the same location as the old root disk.
Copy file name to clipboardExpand all lines: content/admin/github-actions/enabling-automatic-access-to-githubcom-actions-using-github-connect.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,6 +13,7 @@ topics:
13
13
14
14
{% data reusables.actions.enterprise-beta %}
15
15
{% data reusables.actions.enterprise-github-hosted-runners %}
16
+
{% data reusables.actions.enterprise-github-connect-warning %}
16
17
{% data reusables.actions.ae-beta %}
17
18
18
19
By default, {% data variables.product.prodname_actions %} workflows on {% data variables.product.product_name %} cannot use actions directly from {% data variables.product.prodname_dotcom_the_website %} or [{% data variables.product.prodname_marketplace %}](https://github.com/marketplace?type=actions).
Copy file name to clipboardExpand all lines: content/organizations/keeping-your-organization-secure/reviewing-the-audit-log-for-your-organization.md
+32Lines changed: 32 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -482,6 +482,38 @@ For more information, see "[Managing the publication of {% data variables.produc
482
482
| `update_linear_history_requirement_enforcement_level ` | Triggered when required linear commit history is enabled or disabled for a protected branch.
483
483
{% endif %}
484
484
485
+
{% if currentVersion == "free-pro-team@latest" %}
486
+
#### `pull_request` category actions
487
+
488
+
| Action | Description
489
+
|------------------|-------------------
490
+
| `create` | Triggered when a pull request is created.
491
+
| `close` | Triggered when a pull request is closed without being merged.
492
+
| `reopen` | Triggered when a pull request is reopened after previously being closed.
493
+
| `merge` | Triggered when a pull request is merged.
494
+
| `indirect_merge` | Triggered when a pull request is considered merged because its commits were merged into the target branch.
495
+
| `ready_for_review` | Triggered when a pull request is marked as ready for review.
496
+
| `converted_to_draft` | Triggered when a pull request is converted to a draft.
497
+
| `create_review_request` | Triggered when a review is requested.
498
+
| `remove_review_request` | Triggered when a review request is removed.
499
+
500
+
#### `pull_request_review` category actions
501
+
502
+
| Action | Description
503
+
|------------------|-------------------
504
+
| `submit` | Triggered when a review is submitted.
505
+
| `dismiss` | Triggered when a review is dismissed.
Copy file name to clipboardExpand all lines: content/pages/getting-started-with-github-pages/about-github-pages.md
-8Lines changed: 0 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -68,14 +68,6 @@ Project site owned by organization account | `http(s)://pages.<hostname>/<orgnam
68
68
For more information, see "[Enabling subdomain isolation](/enterprise/{{ currentVersion }}/admin/installation/enabling-subdomain-isolation)" or contact your site administrator.
69
69
{% endif %}
70
70
71
-
{% if currentVersion == "free-pro-team@latest" %}
72
-
{% note %}
73
-
74
-
**Note:** Repositories using the legacy `<username>.github.com` naming scheme will still be published, but visitors will be redirected from `http(s)://<username>.github.com` to `http(s)://<username>.github.io`. If both a `<username>.github.com` and `<username>.github.io` repository exist, only the `<username>.github.io` repository will be published.
75
-
76
-
{% endnote %}
77
-
{% endif %}
78
-
79
71
### Publishing sources for {% data variables.product.prodname_pages %} sites
80
72
81
73
The publishing source for your {% data variables.product.prodname_pages %} site is the branch and folder where the source files for your site are stored.
{% if enterpriseServerVersions contains currentVersion and currentVersion ver_gt "enterprise-server@2.21" %}
2
+
{% note %}
3
+
4
+
**Note:** With {% data variables.product.prodname_github_connect %} enabled, {% data variables.product.prodname_actions %} will try to find the repository on your {% data variables.product.prodname_ghe_server %} instance first before falling back to {% data variables.product.prodname_dotcom %}. If a user creates an organization and repository in your enterprise that matches an organization and repository name on {% data variables.product.prodname_dotcom %}, the repository on your enterprise will be used in place of the {% data variables.product.prodname_dotcom %} repository. A malicious user could take advantage of this behavior to run code as part of a workflow.
0 commit comments