Skip to content

Commit 61a0124

Browse files
authored
Merge branch 'main' into patch-1
2 parents 3c33295 + 0d0d3c0 commit 61a0124

13 files changed

Lines changed: 46 additions & 11 deletions

File tree

content/actions/learn-github-actions/finding-and-customizing-actions.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,12 @@ outputs:
114114
description: "Path to results file"
115115
```
116116

117+
{% if currentVersion == "github-ae@latest" %}
118+
### Using the actions included with {% data variables.product.prodname_ghe_managed %}
119+
120+
By default, you can use most of the official {% data variables.product.prodname_dotcom %}-authored actions in {% data variables.product.prodname_ghe_managed %}. For more information, see "[Using actions in {% data variables.product.prodname_ghe_managed %}](/admin/github-actions/using-actions-in-github-ae)."
121+
{% endif %}
122+
117123
### Referencing an action in the same repository where a workflow file uses the action
118124

119125
If an action is defined in the same repository where your workflow file uses the action, you can reference the action with either the ‌`{owner}/{repo}@{ref}` or `./path/to/dir` syntax in your workflow file.

content/actions/using-github-hosted-runners/about-ae-hosted-runners.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,10 @@ To add {% data variables.actions.hosted_runner %}s to your organization or enter
2929

3030
Your {% data variables.actions.hosted_runner %}s are allocated to the same pool as your {% data variables.product.prodname_ghe_managed %} instance. No other customers have access to this pool, and as a result, {% data variables.actions.hosted_runner %}s are not shared with any other customers.
3131

32+
### Managing your {% data variables.actions.hosted_runner %}s
33+
34+
During the {% data variables.actions.hosted_runner %} beta, you can manage your {% data variables.actions.hosted_runner %}s by contacting {% data variables.product.prodname_dotcom %} support. For example, {% data variables.product.prodname_dotcom %} support can assist you with adding a new {% data variables.actions.hosted_runner %}, assigning labels, or moving a {% data variables.actions.hosted_runner %} to a different group.
35+
3236
### Billing
3337

3438
{% data variables.product.prodname_actions %} is currently in beta for {% data variables.product.prodname_ghe_managed %}. During this beta period, {% data variables.actions.hosted_runner %}s are not billed, and can be used for free.

content/admin/github-actions/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ versions:
1616

1717
{% topic_link_in_list /using-github-actions-in-github-ae %}
1818
{% link_in_list /getting-started-with-github-actions-for-github-ae %}
19+
{% link_in_list /using-actions-in-github-ae %}
1920

2021
{% topic_link_in_list /enabling-github-actions-for-github-enterprise-server %}
2122
{% link_in_list /getting-started-with-github-actions-for-github-enterprise-server %}
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
title: Using actions in GitHub AE
3+
intro: '{% data variables.product.prodname_ghe_managed %} includes most of the {% data variables.product.prodname_dotcom %}-authored actions.'
4+
versions:
5+
github-ae: '*'
6+
---
7+
8+
{% data reusables.actions.ae-beta %}
9+
10+
{% data variables.product.prodname_actions %} workflows can use _actions_, which are individual tasks that you can combine to create jobs and customize your workflow. You can create your own actions, or use and customize actions shared by the {% data variables.product.prodname_dotcom %} community.
11+
12+
### Official actions bundled with {% data variables.product.prodname_ghe_managed %}
13+
14+
Most official {% data variables.product.prodname_dotcom %}-authored actions are automatically bundled with {% data variables.product.prodname_ghe_managed %}, and are captured at a point in time from {% data variables.product.prodname_marketplace %}. When your {% data variables.product.prodname_ghe_managed %} instance is updated, the bundled official actions are also updated.
15+
16+
The bundled official actions include `actions/checkout`, `actions/upload-artifact`, `actions/download-artifact`, `actions/labeler`, and various `actions/setup-` actions, among others. To see which of the official actions are included, browse to the following organizations on your instance:
17+
- <code>https://<em>HOSTNAME</em>/actions</code>
18+
- <code>https://<em>HOSTNAME</em>/github</code>
19+
20+
Each action's files are kept in a repository in the `actions` and `github` organizations. Each action repository includes the necessary tags, branches, and commit SHAs that your workflows can use to reference the action.

content/developers/apps/authenticating-with-github-apps.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,8 @@ private_key = OpenSSL::PKey::RSA.new(private_pem)
7777
7878
# Generate the JWT
7979
payload = {
80-
# issued at time
81-
iat: Time.now.to_i,
80+
# issued at time, 60 seconds in the past to allow for clock drift
81+
iat: Time.now.to_i - 60,
8282
# JWT expiration time (10 minute maximum)
8383
exp: Time.now.to_i + (10 * 60),
8484
# {% data variables.product.prodname_github_app %}'s identifier

content/developers/apps/setting-up-your-development-environment-to-create-a-github-app.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ You need to add these variables to the `.env` file:
151151
Here is an example `.env` file:
152152
153153
```
154-
PRIVATE_KEY="-----BEGIN RSA PRIVATE KEY-----
154+
GITHUB_PRIVATE_KEY="-----BEGIN RSA PRIVATE KEY-----
155155
...
156156
HkVN9...
157157
...
@@ -402,7 +402,7 @@ Here are a few common problems and some suggested solutions. If you run into any
402402
**A:** You probably haven't set up your private key environment variable quite right. Your `GITHUB_PRIVATE_KEY` variable should look like this:
403403
404404
```
405-
PRIVATE_KEY="-----BEGIN RSA PRIVATE KEY-----
405+
GITHUB_PRIVATE_KEY="-----BEGIN RSA PRIVATE KEY-----
406406
...
407407
HkVN9...
408408
...

content/developers/webhooks-and-events/webhook-events-and-payloads.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1335,9 +1335,8 @@ When a {% data variables.product.prodname_actions %} workflow run is requested o
13351335
13361336
#### Webhook payload object
13371337
1338-
Key | Type | Description
1339-
----|------|-------------
1340-
`action` | `string` | Most webhook payloads contain an `action` property that contains the specific activity that triggered the event.
1338+
{% data reusables.webhooks.workflow_run_properties %}
1339+
{% data reusables.webhooks.workflow_desc %}
13411340
{% data reusables.webhooks.org_desc %}
13421341
{% data reusables.webhooks.repo_desc %}
13431342
{% data reusables.webhooks.sender_desc %}

content/github/administering-a-repository/viewing-branches-in-your-repository.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ versions:
1616
- **Stale branches**: The **Stale** view shows all branches that no one has committed to in the last three months, ordered by the branches with the oldest commits first. Use this list to determine [which branches to delete](/articles/creating-and-deleting-branches-within-your-repository).
1717
- **All branches**: The **All** view shows the default branch, followed by all other branches ordered by the branches with the most recent commits first.
1818

19+
4. Optionally, use the search field on the top right. It provides a simple, case-insensitive, sub-string search on the branch name. It does not support any additional query syntax.
20+
1921
![The branches page for the Atom repository](/assets/images/help/branches/branches-overview-atom.png)
2022

2123
### Further reading

content/github/setting-up-and-managing-organizations-and-teams/permission-levels-for-an-organization.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ When you designate a user as a {% data variables.product.prodname_github_app %}
131131

132132
### Outside collaborators
133133

134-
To keep your organization data secure while allowing access to repositories, you can add *outside collaborators*. {% data reusables.organizations.outside_collaborators_description %}
134+
To keep your organization's data secure while allowing access to repositories, you can add *outside collaborators*. {% data reusables.organizations.outside_collaborators_description %}
135135

136136
### Further reading
137137

content/rest/reference/activity.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,6 @@ $ -H 'If-None-Match: "a18c3bded88eb5dbb5c849a489412bf3"'
3333
> X-Poll-Interval: 60
3434
```
3535

36-
Events support pagination, however the `per_page` option is unsupported. The fixed page size is 30 items. Fetching up to ten pages is supported, for a total of 300 events. For information, see "[Traversing with pagination](/rest/guides/traversing-with-pagination)."
37-
3836
Only events created within the past 90 days will be included in timelines. Events older than 90 days will not be included (even if the total number of events in the timeline is less than 300).
3937

4038
{% for operation in currentRestOperations %}

0 commit comments

Comments
 (0)