Skip to content

Commit 8e822d5

Browse files
authored
Merge branch 'main' into product-sublanding-bugfix
2 parents 98890e8 + 16cdd98 commit 8e822d5

93 files changed

Lines changed: 428 additions & 387 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/allowed-actions.js

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
// can be added it this list.
55

66
module.exports = [
7-
"actions/cache@0781355a23dac32fd3bac414512f4b903437991a", //actions/cache@v2.1.3
8-
"actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f", //actions/checkout@v2.3.4
9-
"actions/github-script@626af12fe9a53dc2972b48385e7fe7dec79145c9", //actions/script@v3.0.0
10-
"actions/labeler@5f867a63be70efff62b767459b009290364495eb", //actions/labeler@v2.2.0
11-
"actions/setup-node@c46424eee26de4078d34105d3de3cc4992202b1e", //actions/setup-node@v2.1.4
12-
"ruby/setup-ruby@fdcfbcf14ec9672f6f615cb9589a1bc5dd69d262", //ruby/setup-ruby@vv1.64.1
13-
"actions/stale@9d6f46564a515a9ea11e7762ab3957ee58ca50da", //actions/stale@v3.0.16
7+
"actions/cache@0781355a23dac32fd3bac414512f4b903437991a", // v2.1.3
8+
"actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f", // v2.3.4
9+
"actions/github-script@626af12fe9a53dc2972b48385e7fe7dec79145c9", // v3.0.0
10+
"actions/labeler@5f867a63be70efff62b767459b009290364495eb", // v2.2.0
11+
"actions/setup-node@c46424eee26de4078d34105d3de3cc4992202b1e", // v2.1.4
12+
"ruby/setup-ruby@fdcfbcf14ec9672f6f615cb9589a1bc5dd69d262", // v1.64.1
13+
"actions/stale@9d6f46564a515a9ea11e7762ab3957ee58ca50da", // v3.0.16
1414
"alex-page/github-project-automation-plus@fdb7991b72040d611e1123d2b75ff10eda9372c9",
1515
"andymckay/labeler@22d5392de2b725cea4b284df5824125054049d84",
1616
"archive/github-actions-slack@d368c5a4ad757515a9344918f84c490b05777d94",
@@ -23,11 +23,11 @@ module.exports = [
2323
"github/codeql-action/analyze@v1",
2424
"github/codeql-action/init@v1",
2525
"juliangruber/approve-pull-request-action@c530832d4d346c597332e20e03605aa94fa150a8",
26-
"juliangruber/find-pull-request-action@2fc55e82a6d5d36fe1e7f1848f7e64fd02d99de9",
26+
"juliangruber/find-pull-request-action@db875662766249c049b2dcd85293892d61cb0b51", // v1.5.0
2727
"juliangruber/read-file-action@e0a316da496006ffd19142f0fd594a1783f3b512",
2828
"lee-dohm/close-matching-issues@22002609b2555fe18f52b8e2e7c07cbf5529e8a8",
2929
"lee-dohm/no-response@9bb0a4b5e6a45046f00353d5de7d90fb8bd773bb",
30-
"pascalgn/automerge-action@c9bd1823770819dc8fb8a5db2d11a3a95fbe9b07", //pascalgn/automerge@0.12.0
30+
"pascalgn/automerge-action@c9bd1823770819dc8fb8a5db2d11a3a95fbe9b07", // v0.12.0
3131
"peter-evans/create-issue-from-file@a04ce672e3acedb1f8e416b46716ddfd09905326",
3232
"peter-evans/create-or-update-comment@5221bf4aa615e5c6e95bb142f9673a9c791be2cd",
3333
"peter-evans/create-pull-request@8c603dbb04b917a9fc2dd991dc54fef54b640b43",

.github/workflows/repo-sync.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,18 +27,19 @@ jobs:
2727
steps:
2828
- name: Find pull request
2929
if: ${{ github.repository == 'github/docs' }}
30-
uses: juliangruber/find-pull-request-action@2fc55e82a6d5d36fe1e7f1848f7e64fd02d99de9
30+
uses: juliangruber/find-pull-request-action@db875662766249c049b2dcd85293892d61cb0b51
3131
id: find-pull-request
3232
with:
33-
github-token: ${{ secrets.GITHUB_TOKEN }}
33+
github-token: ${{ secrets.DOCS_BOT_SPAM_VISION }}
3434
branch: repo-sync
3535
base: main
36+
state: open
3637

3738
- name: Close pull request if unwanted
3839
if: ${{ github.repository == 'github/docs' && steps.find-pull-request.outputs.number }}
3940
uses: actions/github-script@626af12fe9a53dc2972b48385e7fe7dec79145c9
4041
with:
41-
github-token: ${{ secrets.DOCUBOT_FR_PROJECT_BOARD_WORKFLOWS_REPO_ORG_READ_SCOPES }}
42+
github-token: ${{ secrets.DOCS_BOT_SPAM_VISION }}
4243
script: |
4344
const { owner, repo } = context.repo
4445
@@ -119,13 +120,14 @@ jobs:
119120
github_token: ${{ secrets.OCTOMERGER_PAT_WITH_REPO_AND_WORKFLOW_SCOPE }}
120121

121122
- name: Find pull request
122-
uses: juliangruber/find-pull-request-action@2fc55e82a6d5d36fe1e7f1848f7e64fd02d99de9
123+
uses: juliangruber/find-pull-request-action@db875662766249c049b2dcd85293892d61cb0b51
123124
id: find-pull-request
124125
with:
125126
github-token: ${{ secrets.GITHUB_TOKEN }}
126127
branch: repo-sync
127128
base: main
128129
author: Octomerger
130+
state: open
129131

130132
- name: Approve pull request
131133
if: ${{ steps.find-pull-request.outputs.number }}

.github/workflows/translations.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,14 @@ jobs:
2121
echo 'The repo is currently frozen! Exiting this workflow.'
2222
exit 1 # prevents further steps from running
2323
- name: Find original Pull Request
24-
uses: juliangruber/find-pull-request-action@2fc55e82a6d5d36fe1e7f1848f7e64fd02d99de9
24+
uses: juliangruber/find-pull-request-action@db875662766249c049b2dcd85293892d61cb0b51
2525
id: pr
2626
with:
2727
github-token: ${{ secrets.GITHUB_TOKEN }}
2828
branch: translations
2929
base: main
3030
author: octoglot
31+
state: open
3132
- if: ${{ steps.pr.outputs.number }}
3233
name: Check if already labeled
3334
uses: actions/github-script@626af12fe9a53dc2972b48385e7fe7dec79145c9
124 KB
Loading
140 KB
Loading
44.5 KB
Loading
77.5 KB
Loading
38.7 KB
Loading

content/actions/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ versions:
6464

6565
<button class="js-filter-card-show-more btn btn-outline float-right" data-js-filter-card-max="6">Show more {% octicon "arrow-right" %}</button>
6666

67-
<div class="js-filter-card-no-results d-none py-4 text-center text-gray font-mktg">
67+
<div class="js-filter-card-no-results d-none py-4 text-center color-text-secondary font-mktg">
6868
<div class="mb-3">{% octicon "search" width="24" %}</div>
6969
<h3 class="text-normal">Sorry, there is no result for <strong class="js-filter-card-value"></strong></h3>
7070
<p class="my-3 f4">It looks like we don't have an example that fits your filter.<br>Try another filter or add your code example</p>

content/actions/managing-workflow-runs/removing-workflow-artifacts.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ versions:
2222

2323
{% data reusables.repositories.permissions-statement-write %}
2424

25-
{% data reusables.github-actions.artifact-log-retention-statement %}
25+
{% data reusables.github-actions.artifact-log-retention-statement %}
2626

2727
{% data reusables.repositories.navigate-to-repo %}
2828
{% data reusables.repositories.actions-tab %}
2929
{% data reusables.repositories.navigate-to-workflow %}
3030
{% data reusables.repositories.view-run %}
31-
1. Under **Artifacts**, click {% octicon "trashcan" aria-label="The trashcan icon" %} next to the artifact you want to remove.
31+
1. Under **Artifacts**, click {% octicon "trash" aria-label="The trash icon" %} next to the artifact you want to remove.
3232
{% if currentVersion == "free-pro-team@latest" or currentVersion ver_gt "enterprise-server@3.0" or currentVersion == "github-ae@latest" %}
3333
![Delete artifact drop-down menu](/assets/images/help/repository/actions-delete-artifact-updated.png)
3434
{% else %}

0 commit comments

Comments
 (0)