Skip to content

Commit 02e2e2d

Browse files
authored
Use DOCS_BOT_PAT_BASE (#55464)
1 parent 9e6ef2e commit 02e2e2d

Some content is hidden

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

50 files changed

+100
-100
lines changed

.github/workflows/check-broken-links-github-github.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919
env:
2020
# need to use a token from a user with access to github/github for this step
21-
GITHUB_TOKEN: ${{ secrets.DOCS_BOT_PAT_WRITEORG_PROJECT }}
21+
GITHUB_TOKEN: ${{ secrets.DOCS_BOT_PAT_BASE }}
2222
REPORT_AUTHOR: docs-bot
2323
REPORT_LABEL: github github broken link report
2424
REPORT_REPOSITORY: github/docs-content
@@ -33,7 +33,7 @@ jobs:
3333

3434
- uses: ./.github/actions/get-docs-early-access
3535
with:
36-
token: ${{ secrets.DOCS_BOT_PAT_READPUBLICKEY }}
36+
token: ${{ secrets.DOCS_BOT_PAT_BASE }}
3737

3838
- name: Build server
3939
run: npm run build

.github/workflows/check-for-spammy-issues.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
steps:
2020
- uses: actions/github-script@e69ef5462fd455e02edcaf4dd7708eda96b9eda0
2121
with:
22-
github-token: ${{ secrets.DOCS_BOT_PAT_WORKFLOW_READORG }}
22+
github-token: ${{ secrets.DOCS_BOT_PAT_BASE }}
2323
script: |
2424
2525
const issue = context.payload.issue

.github/workflows/close-bad-repo-sync-prs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Close pull request if unwanted
2525
uses: actions/github-script@e69ef5462fd455e02edcaf4dd7708eda96b9eda0
2626
with:
27-
github-token: ${{ secrets.DOCS_BOT_PAT_WRITEORG_PROJECT }}
27+
github-token: ${{ secrets.DOCS_BOT_PAT_BASE }}
2828
script: |
2929
const { owner, repo } = context.repo
3030
const prCreator = context.actor

.github/workflows/confirm-internal-staff-work-in-docs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
env:
2929
TEAM_CONTENT_REPO: ${{ secrets.TEAM_CONTENT_REPO }}
3030
with:
31-
github-token: ${{ secrets.DOCS_BOT_PAT_WORKFLOW_READORG }}
31+
github-token: ${{ secrets.DOCS_BOT_PAT_BASE }}
3232
script: |
3333
// Only perform this action with GitHub employees
3434
try {

.github/workflows/copy-api-issue-to-internal.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
uses: actions/github-script@e69ef5462fd455e02edcaf4dd7708eda96b9eda0
2323
id: triggered-by-member
2424
with:
25-
github-token: ${{secrets.DOCS_BOT_PAT_WORKFLOW_READORG}}
25+
github-token: ${{secrets.DOCS_BOT_PAT_BASE}}
2626
result-encoding: string
2727
script: |
2828
const triggerer_login = context.payload.sender.login
@@ -48,26 +48,26 @@ jobs:
4848
new_issue_url="$(gh issue create --title "$ISSUE_TITLE" --body "$ISSUE_BODY" --repo github/docs-content)"
4949
echo 'NEW_ISSUE='$new_issue_url >> $GITHUB_ENV
5050
env:
51-
GITHUB_TOKEN: ${{secrets.DOCS_BOT_PAT_WORKFLOW_READORG}}
51+
GITHUB_TOKEN: ${{secrets.DOCS_BOT_PAT_BASE}}
5252
ISSUE_TITLE: ${{ github.event.issue.title }}
5353
ISSUE_BODY: ${{ github.event.issue.body }}
5454

5555
- name: Comment on the old issue
5656
run: gh issue comment $OLD_ISSUE --body "Thank you for opening this issue! Updates to this documentation must be made internally. I have copied your issue to an internal issue, so I will close this issue."
5757
env:
58-
GITHUB_TOKEN: ${{secrets.DOCS_BOT_PAT_WORKFLOW_READORG}}
58+
GITHUB_TOKEN: ${{secrets.DOCS_BOT_PAT_BASE}}
5959
OLD_ISSUE: ${{ github.event.issue.html_url }}
6060

6161
- name: Close the old issue
6262
run: gh issue close $OLD_ISSUE
6363
env:
64-
GITHUB_TOKEN: ${{secrets.DOCS_BOT_PAT_WORKFLOW_READORG}}
64+
GITHUB_TOKEN: ${{secrets.DOCS_BOT_PAT_BASE}}
6565
OLD_ISSUE: ${{ github.event.issue.html_url }}
6666

6767
- name: Comment on the new issue
6868
run: gh issue comment $NEW_ISSUE --body "This issue was originally opened in the open source repo as $OLD_ISSUE"
6969
env:
70-
GITHUB_TOKEN: ${{secrets.DOCS_BOT_PAT_WORKFLOW_READORG}}
70+
GITHUB_TOKEN: ${{secrets.DOCS_BOT_PAT_BASE}}
7171
NEW_ISSUE: ${{ env.NEW_ISSUE }}
7272
OLD_ISSUE: ${{ github.event.issue.html_url }}
7373

.github/workflows/count-translation-corruptions.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@ jobs:
2828
with:
2929
# Using a PAT is necessary so that the new commit will trigger the
3030
# CI in the PR. (Events from GITHUB_TOKEN don't trigger new workflows.)
31-
token: ${{ secrets.DOCS_BOT_PAT_READPUBLICKEY }}
31+
token: ${{ secrets.DOCS_BOT_PAT_BASE }}
3232

3333
# It's important because translations are often a bit behind.
3434
# So if a translation is a bit behind, it might still be referencing
3535
# an asset even though none of the English content does.
3636
- name: Clone all translations
3737
uses: ./.github/actions/clone-translations
3838
with:
39-
token: ${{ secrets.DOCS_BOT_PAT_READPUBLICKEY }}
39+
token: ${{ secrets.DOCS_BOT_PAT_BASE }}
4040

4141
- uses: ./.github/actions/node-npm-setup
4242

.github/workflows/delete-orphan-translation-files.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
6767
with:
6868
repository: ${{ matrix.language_repo }}
69-
token: ${{ secrets.DOCS_BOT_PAT_READPUBLICKEY }}
69+
token: ${{ secrets.DOCS_BOT_PAT_BASE }}
7070
path: ${{ matrix.language_dir }}
7171

7272
- uses: ./.github/actions/node-npm-setup
@@ -89,7 +89,7 @@ jobs:
8989
working-directory: ${{ matrix.language_dir }}
9090
env:
9191
# Needed for gh
92-
GH_TOKEN: ${{ secrets.DOCS_BOT_PAT_READPUBLICKEY }}
92+
GH_TOKEN: ${{ secrets.DOCS_BOT_PAT_BASE }}
9393
run: |
9494
# If nothing to commit, exit now. It's fine. No orphans.
9595
changes=$(git diff --name-only | wc -l)

.github/workflows/docs-review-collect.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
run: |
3636
npm run fr-add-docs-reviewers-requests
3737
env:
38-
TOKEN: ${{ secrets.DOCS_BOT_PAT_WRITEORG_PROJECT }}
38+
TOKEN: ${{ secrets.DOCS_BOT_PAT_BASE }}
3939
PROJECT_NUMBER: 2936
4040
ORGANIZATION: 'github'
4141
REPO: 'audit-log-allowlists'

.github/workflows/enterprise-dates.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- name: Run src/ghes-releases/scripts/update-enterprise-dates.js
3232
run: npm run update-enterprise-dates
3333
env:
34-
GITHUB_TOKEN: ${{ secrets.DOCS_BOT_PAT_WRITEORG_PROJECT }}
34+
GITHUB_TOKEN: ${{ secrets.DOCS_BOT_PAT_BASE }}
3535

3636
- name: Create pull request
3737
id: create-pull-request
@@ -41,7 +41,7 @@ jobs:
4141
HUSKY: '0'
4242
with:
4343
# need to use a token with repo and workflow scopes for this step
44-
token: ${{ secrets.DOCS_BOT_PAT_READPUBLICKEY }}
44+
token: ${{ secrets.DOCS_BOT_PAT_BASE }}
4545
commit-message: '🤖 ran src/ghes-releases/scripts/update-enterprise-dates.js'
4646
title: 🤖 src/ghes-releases/lib/enterprise-dates.json update
4747
body:
@@ -54,7 +54,7 @@ jobs:
5454
- name: Enable GitHub auto-merge
5555
if: ${{ steps.create-pull-request.outputs.pull-request-number }}
5656
env:
57-
GITHUB_TOKEN: ${{ secrets.DOCS_BOT_PAT_READPUBLICKEY }}
57+
GITHUB_TOKEN: ${{ secrets.DOCS_BOT_PAT_BASE }}
5858
AUTOMERGE_PR_NUMBER: ${{ steps.create-pull-request.outputs.pull-request-number }}
5959
run: npm run enable-automerge
6060

.github/workflows/enterprise-release-issue.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ jobs:
2626
- name: Create an enterprise release issue
2727
run: npm run create-enterprise-issue -- release
2828
env:
29-
GITHUB_TOKEN: ${{ secrets.DOCS_BOT_PAT_WRITEORG_PROJECT }}
29+
GITHUB_TOKEN: ${{ secrets.DOCS_BOT_PAT_BASE }}
3030

3131
- name: Create an enterprise deprecation issue
3232
run: npm run create-enterprise-issue -- deprecation
3333
env:
34-
GITHUB_TOKEN: ${{ secrets.DOCS_BOT_PAT_WRITEORG_PROJECT }}
34+
GITHUB_TOKEN: ${{ secrets.DOCS_BOT_PAT_BASE }}
3535

3636
- uses: ./.github/actions/slack-alert
3737
if: ${{ failure() && github.event_name != 'workflow_dispatch' }}

.github/workflows/first-responder-v2-prs-collect.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
uses: actions/github-script@e69ef5462fd455e02edcaf4dd7708eda96b9eda0
2828
id: check-membership
2929
with:
30-
github-token: ${{secrets.DOCS_BOT_PAT_WORKFLOW_READORG}}
30+
github-token: ${{secrets.DOCS_BOT_PAT_BASE}}
3131
result-encoding: string
3232
script: |
3333
const repoName = context.payload.repository.name
@@ -71,7 +71,7 @@ jobs:
7171
- name: Triage to docs-content FR project
7272
if: steps.check-membership.outputs.result == 'false'
7373
env:
74-
GITHUB_TOKEN: ${{ secrets.DOCS_BOT_PAT_WRITEORG_PROJECT }}
74+
GITHUB_TOKEN: ${{ secrets.DOCS_BOT_PAT_BASE }}
7575
PR_URL: ${{ github.event.pull_request.html_url }}
7676
PROJECT_NUMBER: 11672
7777
PROJECT_ID: PVT_kwDNJr_OAGNkBg

.github/workflows/generate-code-scanning-query-lists.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
7070
- uses: ./.github/actions/install-cocofix
7171
with:
72-
token: ${{ secrets.DOCS_BOT_PAT_WORKFLOW }}
72+
token: ${{ secrets.DOCS_BOT_PAT_BASE }}
7373

7474
- name: Lint the code (eslint)
7575
if: ${{ github.event_name == 'pull_request' }}
@@ -103,7 +103,7 @@ jobs:
103103
104104
- name: Create pull request
105105
env:
106-
GITHUB_TOKEN: ${{ secrets.DOCS_BOT_PAT_READPUBLICKEY }}
106+
GITHUB_TOKEN: ${{ secrets.DOCS_BOT_PAT_BASE }}
107107
DRY_RUN: ${{ github.event_name == 'pull_request'}}
108108
run: |
109109

.github/workflows/hubber-contribution-help.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- id: membership_check
2929
uses: actions/github-script@e69ef5462fd455e02edcaf4dd7708eda96b9eda0
3030
with:
31-
github-token: ${{ secrets.DOCS_BOT_PAT_WORKFLOW_READORG }}
31+
github-token: ${{ secrets.DOCS_BOT_PAT_BASE }}
3232
script: |
3333
try {
3434
await github.rest.teams.getMembershipForUserInOrg({

.github/workflows/index-autocomplete-search.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232

3333
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
3434
with:
35-
token: ${{ secrets.DOCS_BOT_PAT_READPUBLICKEY }}
35+
token: ${{ secrets.DOCS_BOT_PAT_BASE }}
3636
repository: github/docs-internal-data
3737
path: docs-internal-data
3838

.github/workflows/index-general-search-pr.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
with:
4545
repository: github/docs-internal-data
4646
# This works because user `docs-bot` has read access to that private repo.
47-
token: ${{ secrets.DOCS_BOT_PAT_READPUBLICKEY }}
47+
token: ${{ secrets.DOCS_BOT_PAT_BASE }}
4848
path: docs-internal-data
4949

5050
- uses: ./.github/actions/setup-elasticsearch

.github/workflows/index-general-search.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -120,14 +120,14 @@ jobs:
120120
with:
121121
repository: github/docs-internal-data
122122
# This works because user `docs-bot` has read access to that private repo.
123-
token: ${{ secrets.DOCS_BOT_PAT_READPUBLICKEY }}
123+
token: ${{ secrets.DOCS_BOT_PAT_BASE }}
124124
path: docs-internal-data
125125

126126
- name: Clone all translations
127127
if: ${{ matrix.language != 'en' }}
128128
uses: ./.github/actions/clone-translations
129129
with:
130-
token: ${{ secrets.DOCS_BOT_PAT_READPUBLICKEY }}
130+
token: ${{ secrets.DOCS_BOT_PAT_BASE }}
131131

132132
- uses: ./.github/actions/node-npm-setup
133133

.github/workflows/link-check-daily.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,15 @@ jobs:
3232
id: check-early-access
3333
env:
3434
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
35-
GITHUB_TOKEN: ${{ secrets.DOCS_BOT_PAT_READPUBLICKEY }}
35+
GITHUB_TOKEN: ${{ secrets.DOCS_BOT_PAT_BASE }}
3636
run: npm run what-docs-early-access-branch
3737

3838
- name: Check out docs-early-access too, if internal repo
3939
if: ${{ github.repository == 'github/docs-internal' }}
4040
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
4141
with:
4242
repository: github/docs-early-access
43-
token: ${{ secrets.DOCS_BOT_PAT_READPUBLICKEY }}
43+
token: ${{ secrets.DOCS_BOT_PAT_BASE }}
4444
path: docs-early-access
4545
ref: ${{ steps.check-early-access.outputs.branch }}
4646

@@ -71,7 +71,7 @@ jobs:
7171
# Set this to true in repo scope to enable debug logs
7272
# ACTIONS_RUNNER_DEBUG = true
7373
ACTION_RUN_URL: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}
74-
GITHUB_TOKEN: ${{ secrets.DOCS_BOT_PAT_WRITEORG_PROJECT }}
74+
GITHUB_TOKEN: ${{ secrets.DOCS_BOT_PAT_BASE }}
7575
REPORT_AUTHOR: docs-bot
7676
REPORT_LABEL: broken link report
7777
REPORT_REPOSITORY: github/docs-content

.github/workflows/link-check-on-pr.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,14 @@ jobs:
3333
- uses: ./.github/actions/get-docs-early-access
3434
if: ${{ github.repository == 'github/docs-internal' }}
3535
with:
36-
token: ${{ secrets.DOCS_BOT_PAT_READPUBLICKEY }}
36+
token: ${{ secrets.DOCS_BOT_PAT_BASE }}
3737

3838
- name: Link check all pages (internal links only)
3939
env:
4040
LEVEL: 'critical'
4141
ACTION_RUN_URL: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}
42-
GITHUB_TOKEN: ${{ secrets.DOCS_BOT_PAT_WRITEORG_PROJECT }}
43-
SHOULD_COMMENT: ${{ secrets.DOCS_BOT_PAT_WRITEORG_PROJECT != '' }}
42+
GITHUB_TOKEN: ${{ secrets.DOCS_BOT_PAT_BASE }}
43+
SHOULD_COMMENT: ${{ secrets.DOCS_BOT_PAT_BASE != '' }}
4444
CHECK_EXTERNAL_LINKS: false
4545
CREATE_REPORT: false
4646
CHECK_ANCHORS: true

.github/workflows/lint-entire-content-data-markdown.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
- name: Open issue in docs-content
3838
if: ${{ always() && steps.linting-content-data.outcome == 'failure' }}
3939
env:
40-
GITHUB_TOKEN: ${{ secrets.DOCS_BOT_PAT_WRITEORG_PROJECT }}
40+
GITHUB_TOKEN: ${{ secrets.DOCS_BOT_PAT_BASE }}
4141
REPORT_AUTHOR: docs-bot
4242
REPORT_LABEL: broken content markdown report
4343
REPORT_REPOSITORY: github/docs-content

.github/workflows/local-dev.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- uses: ./.github/actions/get-docs-early-access
2727
if: ${{ github.repository == 'github/docs-internal' }}
2828
with:
29-
token: ${{ secrets.DOCS_BOT_PAT_READPUBLICKEY }}
29+
token: ${{ secrets.DOCS_BOT_PAT_BASE }}
3030

3131
# Note that we don't check out docs-early-access, Elasticsearch,
3232
# or any remote translations. Nothing fancy here!

.github/workflows/moda-ci.yaml

+7-7
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ jobs:
2424
id: modify_vault_keys
2525
run: |
2626
if [ -z "${{ vars.VAULT_KEYS }}" ]; then
27-
# We want to add the DOCS_BOT_PAT_READPUBLICKEY to the list of keys
27+
# We want to add the DOCS_BOT_PAT_BASE to the list of keys
2828
# so that builds fetch the secret from the docs-internal vault
2929
# where --environment is "ci"
30-
echo "modified=DOCS_BOT_PAT_READPUBLICKEY" >> $GITHUB_OUTPUT
30+
echo "modified=DOCS_BOT_PAT_BASE" >> $GITHUB_OUTPUT
3131
else
32-
echo "modified=${{ vars.VAULT_KEYS }},DOCS_BOT_PAT_READPUBLICKEY" >> $GITHUB_OUTPUT
32+
echo "modified=${{ vars.VAULT_KEYS }},DOCS_BOT_PAT_BASE" >> $GITHUB_OUTPUT
3333
fi
3434
3535
#############
@@ -66,9 +66,9 @@ jobs:
6666
with:
6767
ci-formatted-job-name: ${{ matrix.ci_job.job }}
6868
vault-keys: ${{ needs.set-vault-keys.outputs.modified_vault_keys }}
69-
# Passes 'DOCS_BOT_PAT_READPUBLICKEY' secret from Vault to docker as --secret id=DOCS_BOT_PAT_READPUBLICKEY,src=<PAT value>
69+
# Passes 'DOCS_BOT_PAT_BASE' secret from Vault to docker as --secret id=DOCS_BOT_PAT_BASE,src=<PAT value>
7070
attest: true
71-
docker-build-env-secrets: 'DOCS_BOT_PAT_READPUBLICKEY'
71+
docker-build-env-secrets: 'DOCS_BOT_PAT_BASE'
7272
secrets:
7373
dx-bot-token: ${{ secrets.INTERNAL_ACTIONS_DX_BOT_ACCOUNT_TOKEN }}
7474
datadog-api-key: ${{ secrets.DATADOG_API_KEY }}
@@ -88,8 +88,8 @@ jobs:
8888
with:
8989
ci-formatted-job-name: ${{ matrix.ci_job.job }}
9090
vault-keys: ${{ needs.set-vault-keys.outputs.modified_vault_keys }}
91-
# Passes 'DOCS_BOT_PAT_READPUBLICKEY' secret from Vault to docker as --secret id=DOCS_BOT_PAT_READPUBLICKEY,src=<PAT value>
92-
docker-build-env-secrets: 'DOCS_BOT_PAT_READPUBLICKEY'
91+
# Passes 'DOCS_BOT_PAT_BASE' secret from Vault to docker as --secret id=DOCS_BOT_PAT_BASE,src=<PAT value>
92+
docker-build-env-secrets: 'DOCS_BOT_PAT_BASE'
9393
secrets:
9494
dx-bot-token: ${{ secrets.INTERNAL_ACTIONS_DX_BOT_ACCOUNT_TOKEN }}
9595
datadog-api-key: ${{ secrets.DATADOG_API_KEY }}

.github/workflows/move-existing-issues-to-the-correct-repo.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
TEAM_ENGINEERING_REPO: ${{ secrets.TEAM_ENGINEERING_REPO }}
2222
TEAM_CONTENT_REPO: ${{ secrets.TEAM_CONTENT_REPO }}
2323
with:
24-
github-token: ${{ secrets.DOCS_BOT_PAT_WORKFLOW_READORG }}
24+
github-token: ${{ secrets.DOCS_BOT_PAT_BASE }}
2525
script: |
2626
const owner = 'github'
2727
const originalRepo = 'docs-internal'

.github/workflows/move-help-wanted-issues.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ jobs:
2525
with:
2626
project: Docs open source board
2727
column: Help wanted
28-
repo-token: ${{ secrets.DOCS_BOT_PAT_WORKFLOW_READORG }}
28+
repo-token: ${{ secrets.DOCS_BOT_PAT_BASE }}

.github/workflows/move-ready-to-merge-pr.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
with:
2929
project: Docs open source board
3030
column: Triage
31-
repo-token: ${{ secrets.DOCS_BOT_PAT_WORKFLOW_READORG }}
31+
repo-token: ${{ secrets.DOCS_BOT_PAT_BASE }}
3232

3333
- name: Check out repo
3434
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1

.github/workflows/notify-about-deployment.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
id: get-number
4343
timeout-minutes: 5
4444
env:
45-
GITHUB_TOKEN: ${{ secrets.DOCS_BOT_PAT_READPUBLICKEY }}
45+
GITHUB_TOKEN: ${{ secrets.DOCS_BOT_PAT_BASE }}
4646
run: npm run find-past-built-pr
4747

4848
- name: Find content directory changes comment

0 commit comments

Comments
 (0)