Skip to content

Commit 2e938af

Browse files
authored
Merge pull request #39453 from github/repo-sync
Repo sync
2 parents ce9fcb4 + 596e626 commit 2e938af

File tree

21 files changed

+426
-38
lines changed

21 files changed

+426
-38
lines changed

content/actions/how-tos/administering-github-actions/index.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ versions:
99
children:
1010
- /viewing-github-actions-metrics
1111
- /making-retired-namespaces-available-on-ghecom
12-
- /managing-custom-actions
1312
redirect_from:
1413
- /actions/administering-github-actions
1514
---
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
---
2-
title: Developing a third party CLI action
3-
shortTitle: CLI setup action
2+
title: Creating a third party CLI action
3+
shortTitle: Create a CLI action
44
intro: 'Learn how to develop an action to set up a CLI on {% data variables.product.prodname_actions %} runners.'
55
redirect_from:
66
- /actions/creating-actions/developing-a-third-party-cli-action
77
- /actions/sharing-automations/creating-actions/developing-a-third-party-cli-action
8+
- /actions/how-tos/sharing-automations/creating-actions/developing-a-third-party-cli-action
89
versions:
910
fpt: '*'
1011
ghec: '*'
11-
type: tutorial
1212
topics:
1313
- Actions
1414
---
@@ -29,7 +29,7 @@ This article will demonstrate how to write an action that retrieves a specific v
2929

3030
## Prerequisites
3131

32-
You should have an understanding of how to write a custom action. For more information, see [AUTOTITLE](/actions/creating-actions/about-custom-actions). For a more detailed guide on how to write a custom action, see [AUTOTITLE](/actions/creating-actions/creating-a-javascript-action).
32+
You should have an understanding of how to write a custom action. For more information, see [AUTOTITLE](/actions/how-tos/creating-and-publishing-actions/managing-custom-actions).
3333

3434
## Example
3535

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
---
2-
title: Creating actions
3-
shortTitle: Create actions
2+
title: Creating and publishing actions
3+
shortTitle: Create and publish actions
44
intro: 'You can create your own actions, use and customize actions shared by the {% data variables.product.prodname_dotcom %} community, or write and share the actions you build.'
55
versions:
66
fpt: '*'
77
ghes: '*'
88
ghec: '*'
9+
redirect_from:
10+
- /actions/sharing-automations/creating-actions
11+
- /actions/how-tos/sharing-automations/creating-actions
912
children:
13+
- /managing-custom-actions
14+
- /creating-a-third-party-cli-action
1015
- /setting-exit-codes-for-actions
11-
- /releasing-and-maintaining-actions
1216
- /publishing-actions-in-github-marketplace
13-
- /developing-a-third-party-cli-action
14-
redirect_from:
15-
- /actions/sharing-automations/creating-actions
17+
- /releasing-and-maintaining-actions
1618
---
17-
18-
{% data reusables.actions.enterprise-github-hosted-runners %}

content/actions/how-tos/administering-github-actions/managing-custom-actions.md renamed to content/actions/how-tos/creating-and-publishing-actions/managing-custom-actions.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: Managing custom actions
3+
shortTitle: Manage custom actions
34
intro: 'Learn how to create and manage your own actions, and customize actions shared by the {% data variables.product.prodname_dotcom %} community.'
45
versions:
56
fpt: '*'
@@ -9,6 +10,8 @@ type: overview
910
topics:
1011
- Action development
1112
- Fundamentals
13+
redirect_from:
14+
- /actions/how-tos/administering-github-actions/managing-custom-actions
1215
---
1316

1417
## Choosing a location for your action
Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,17 @@ redirect_from:
77
- /actions/building-actions/publishing-actions-in-github-marketplace
88
- /actions/creating-actions/publishing-actions-in-github-marketplace
99
- /actions/sharing-automations/creating-actions/publishing-actions-in-github-marketplace
10+
- /actions/how-tos/sharing-automations/creating-actions/publishing-actions-in-github-marketplace
1011
versions:
1112
fpt: '*'
1213
ghec: '*'
13-
type: how_to
1414
shortTitle: Publish in GitHub Marketplace
1515
---
1616

17-
You must accept the terms of service to publish actions in {% data variables.product.prodname_marketplace %}.
17+
## Prerequisites
1818

19-
## About publishing actions
19+
>[!NOTE]
20+
> You must accept the terms of service to publish actions in {% data variables.product.prodname_marketplace %}.
2021
2122
Before you can publish an action, you'll need to create an action in your repository. For more information, see [AUTOTITLE](/actions/creating-actions).
2223

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
title: Releasing and maintaining actions
33
shortTitle: Release and maintain actions
44
intro: You can leverage automation and open source best practices to release and maintain actions.
5-
type: tutorial
65
topics:
76
- Action development
87
- Actions
@@ -14,6 +13,7 @@ versions:
1413
redirect_from:
1514
- /actions/creating-actions/releasing-and-maintaining-actions
1615
- /actions/sharing-automations/creating-actions/releasing-and-maintaining-actions
16+
- /actions/how-tos/sharing-automations/creating-actions/releasing-and-maintaining-actions
1717
---
1818

1919
{% data reusables.actions.enterprise-github-hosted-runners %}

content/actions/how-tos/sharing-automations/creating-actions/setting-exit-codes-for-actions.md renamed to content/actions/how-tos/creating-and-publishing-actions/setting-exit-codes-for-actions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ redirect_from:
66
- /actions/building-actions/setting-exit-codes-for-actions
77
- /actions/creating-actions/setting-exit-codes-for-actions
88
- /actions/sharing-automations/creating-actions/setting-exit-codes-for-actions
9+
- /actions/how-tos/sharing-automations/creating-actions/setting-exit-codes-for-actions
910
versions:
1011
fpt: '*'
1112
ghes: '*'
1213
ghec: '*'
13-
type: how_to
1414
---
1515

1616
{% data reusables.actions.enterprise-github-hosted-runners %}

content/actions/how-tos/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ versions:
99
children:
1010
- /writing-workflows
1111
- /managing-workflow-runs-and-deployments
12+
- /creating-and-publishing-actions
1213
- /sharing-automations
1314
- /using-github-hosted-runners
1415
- /managing-self-hosted-runners

content/actions/how-tos/sharing-automations/index.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ redirect_from:
1414
- /articles/creating-a-github-action
1515
- /actions/sharing-automations
1616
children:
17-
- /creating-actions
1817
- /reuse-workflows
1918
- /creating-workflow-templates-for-your-organization
2019
- /sharing-actions-and-workflows-from-your-private-repository

content/authentication/authenticating-with-single-sign-on/authorizing-a-personal-access-token-for-use-with-single-sign-on.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@ You must authorize your {% data variables.product.pat_v1 %} after creation befor
2929

3030
1. In the dropdown menu, to the right of the organization you'd like to authorize the token for, click **Authorize**.
3131

32+
> [!NOTE]
33+
> When authorizing a {% data variables.product.pat_v1 %} for use within an organization that belongs to an enterprise which has both an IP allow list and single sign-on enabled at the enterprise level, your IP must also be allowed at the enterprise level. See [AUTOTITLE](/admin/configuring-settings/hardening-security-for-your-enterprise/restricting-network-traffic-to-your-enterprise-with-an-ip-allow-list).
34+
3235
## Further reading
3336

3437
* [AUTOTITLE](/authentication/keeping-your-account-and-data-secure/creating-a-personal-access-token)

0 commit comments

Comments
 (0)