Skip to content

Commit 1a40544

Browse files
committed
build: update token names
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed --- --- type: pre_push_report description: Results of running various checks prior to pushing changes. report: - task: run_javascript_examples status: na - task: run_c_examples status: na - task: run_cpp_examples status: na - task: run_javascript_readme_examples status: na - task: run_c_benchmarks status: na - task: run_cpp_benchmarks status: na - task: run_fortran_benchmarks status: na - task: run_javascript_benchmarks status: na - task: run_julia_benchmarks status: na - task: run_python_benchmarks status: na - task: run_r_benchmarks status: na - task: run_javascript_tests status: na ---
1 parent a25ccb1 commit 1a40544

17 files changed

+30
-30
lines changed

.github/workflows/autoclose.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
- name: 'Close pull request'
5353
run: gh pr close "$NUMBER" --comment "$BODY"
5454
env:
55-
GH_TOKEN: ${{ secrets.STDLIB_BOT_GITHUB_TOKEN }}
55+
GH_TOKEN: ${{ secrets.STDLIB_BOT_FGPAT_PR_WRITE }}
5656
GH_REPO: ${{ github.repository }}
5757
NUMBER: ${{ github.event.pull_request.number }}
5858
BODY: |
@@ -88,7 +88,7 @@ jobs:
8888
- name: 'Close pull request'
8989
run: gh pr close "$NUMBER" --comment "$BODY"
9090
env:
91-
GH_TOKEN: ${{ secrets.STDLIB_BOT_GITHUB_TOKEN }}
91+
GH_TOKEN: ${{ secrets.STDLIB_BOT_FGPAT_PR_WRITE }}
9292
GH_REPO: ${{ github.repository }}
9393
NUMBER: ${{ github.event.pull_request.number }}
9494
BODY: |
@@ -124,7 +124,7 @@ jobs:
124124
- name: 'Close pull request'
125125
run: gh pr close "$NUMBER" --comment "$BODY"
126126
env:
127-
GH_TOKEN: ${{ secrets.STDLIB_BOT_GITHUB_TOKEN }}
127+
GH_TOKEN: ${{ secrets.STDLIB_BOT_FGPAT_PR_WRITE }}
128128
GH_REPO: ${{ github.repository }}
129129
NUMBER: ${{ github.event.pull_request.number }}
130130
BODY: |
@@ -164,7 +164,7 @@ jobs:
164164
- name: 'Close pull request'
165165
run: gh pr close "$NUMBER" --comment "$BODY"
166166
env:
167-
GH_TOKEN: ${{ secrets.STDLIB_BOT_GITHUB_TOKEN }}
167+
GH_TOKEN: ${{ secrets.STDLIB_BOT_FGPAT_PR_WRITE }}
168168
GH_REPO: ${{ github.repository }}
169169
NUMBER: ${{ github.event.pull_request.number }}
170170
BODY: |
@@ -176,7 +176,7 @@ jobs:
176176
- name: 'Lock conversation'
177177
run: gh pr lock "$NUMBER" --reason spam
178178
env:
179-
GH_TOKEN: ${{ secrets.STDLIB_BOT_GITHUB_TOKEN }}
179+
GH_TOKEN: ${{ secrets.STDLIB_BOT_FGPAT_PR_WRITE }}
180180
GH_REPO: ${{ github.repository }}
181181
NUMBER: ${{ github.event.pull_request.number }}
182182

@@ -204,7 +204,7 @@ jobs:
204204
- name: 'Close pull request'
205205
run: gh pr close "$NUMBER" --comment "$BODY"
206206
env:
207-
GH_TOKEN: ${{ secrets.STDLIB_BOT_GITHUB_TOKEN }}
207+
GH_TOKEN: ${{ secrets.STDLIB_BOT_FGPAT_PR_WRITE }}
208208
GH_REPO: ${{ github.repository }}
209209
NUMBER: ${{ github.event.pull_request.number }}
210210
BODY: |

.github/workflows/check_contributing_guidelines_acceptance.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787
# Check contributing guidelines acceptance:
8888
- name: 'Check contributing guidelines acceptance'
8989
env:
90-
GITHUB_TOKEN: ${{ secrets.STDLIB_BOT_GITHUB_TOKEN }}
90+
GITHUB_TOKEN: ${{ secrets.STDLIB_BOT_FGPAT_PR_WRITE }}
9191
PR_NUMBER: ${{ github.event.pull_request.number || inputs.pull_request_number }}
9292
run: |
9393
. "$GITHUB_WORKSPACE/.github/workflows/scripts/check_contributing_guidelines_acceptance" $PR_NUMBER

.github/workflows/first_time_greeting.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
# Pin action to full length commit SHA
4848
uses: actions/first-interaction@34f15e814fe48ac9312ccf29db4e74fa767cbab7 # v1.3.0
4949
with:
50-
repo-token: ${{ secrets.STDLIB_BOT_FGPAT_REPO_WRITE }}
50+
repo-token: ${{ secrets.STDLIB_BOT_PAT_REPO_WRITE }}
5151
issue-message: |
5252
:wave: Hi there! :wave:
5353

.github/workflows/generate_pr_commit_message.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ jobs:
9090
# Pin action to full length commit SHA
9191
uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043 # v4.0.0
9292
with:
93-
token: ${{ secrets.STDLIB_BOT_FGPAT_REPO_WRITE }}
93+
token: ${{ secrets.STDLIB_BOT_PAT_REPO_WRITE }}
9494
issue-number: ${{ github.event.pull_request.number }}
9595
body: |
9696
### PR Commit Message

.github/workflows/labeler.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -63,15 +63,15 @@ jobs:
6363
uses: actions/labeler@8558fd74291d67161a8a78ce36a881fa63b766a9 # v5.0.0
6464
with:
6565
configuration-path: .github/labeler.yml
66-
repo-token: ${{ secrets.CHATBOT_GITHUB_TOKEN }}
66+
repo-token: ${{ secrets.STDLIB_BOT_FGPAT_PR_WRITE }}
6767

6868
# Add "First-time Contributor" label if PR is from a first-time contributor:
6969
- name: 'Add "First-time Contributor" label if PR is from a first-time contributor'
7070
if: ${{ github.event.action == 'opened' || github.event.action == 'reopened' }}
7171
# Pin action to full-length commit SHA
7272
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
7373
with:
74-
github-token: ${{ secrets.CHATBOT_GITHUB_TOKEN }}
74+
github-token: ${{ secrets.STDLIB_BOT_FGPAT_PR_WRITE }}
7575
script: |
7676
const { data: pr } = await github.rest.pulls.get({
7777
'owner': context.repo.owner,
@@ -96,7 +96,7 @@ jobs:
9696
# Pin action to full length commit SHA
9797
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
9898
with:
99-
github-token: ${{ secrets.CHATBOT_GITHUB_TOKEN }}
99+
github-token: ${{ secrets.STDLIB_BOT_FGPAT_PR_WRITE }}
100100
script: |
101101
await github.rest.issues.addLabels({
102102
'owner': context.repo.owner,
@@ -111,7 +111,7 @@ jobs:
111111
# Pin action to full length commit SHA
112112
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
113113
with:
114-
github-token: ${{ secrets.CHATBOT_GITHUB_TOKEN }}
114+
github-token: ${{ secrets.STDLIB_BOT_FGPAT_PR_WRITE }}
115115
script: |
116116
await github.rest.issues.addLabels({
117117
'owner': context.repo.owner,
@@ -126,7 +126,7 @@ jobs:
126126
# Pin action to full length commit SHA
127127
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
128128
with:
129-
github-token: ${{ secrets.CHATBOT_GITHUB_TOKEN }}
129+
github-token: ${{ secrets.STDLIB_BOT_FGPAT_PR_WRITE }}
130130
script: |
131131
try {
132132
await github.rest.issues.removeLabel({
@@ -144,7 +144,7 @@ jobs:
144144
if: ${{ github.event.action == 'labeled' && github.event.label.name == 'Ready To Merge' }}
145145
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
146146
with:
147-
github-token: ${{ secrets.CHATBOT_GITHUB_TOKEN }}
147+
github-token: ${{ secrets.STDLIB_BOT_FGPAT_PR_WRITE }}
148148
script: |
149149
const labelsToRemove = [ 'Needs Review', 'Needs Changes' ];
150150
for ( const label of labelsToRemove ) {
@@ -166,7 +166,7 @@ jobs:
166166
# Pin action to full length commit SHA
167167
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
168168
with:
169-
github-token: ${{ secrets.CHATBOT_GITHUB_TOKEN }}
169+
github-token: ${{ secrets.STDLIB_BOT_FGPAT_PR_WRITE }}
170170
script: |
171171
const prAuthor = context.payload.pull_request.user.login;
172172
const { owner, repo } = context.repo;

.github/workflows/markdown_equations.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ jobs:
163163
commit-message: 'docs: update Markdown equation elements'
164164
committer: 'stdlib-bot <[email protected]>'
165165
signoff: true
166-
token: ${{ secrets.STDLIB_BOT_FGPAT_REPO_WRITE }}
166+
token: ${{ secrets.STDLIB_BOT_PAT_REPO_WRITE }}
167167
labels: |
168168
documentation
169169
automated-pr

.github/workflows/markdown_pkg_urls.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ jobs:
151151
commit-message: 'docs: update Markdown stdlib package URLs'
152152
committer: 'stdlib-bot <[email protected]>'
153153
signoff: true
154-
token: ${{ secrets.STDLIB_BOT_FGPAT_REPO_WRITE }}
154+
token: ${{ secrets.STDLIB_BOT_PAT_REPO_WRITE }}
155155
labels: |
156156
documentation
157157
automated-pr

.github/workflows/markdown_related_packages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ jobs:
162162
commit-message: 'docs: update related packages sections'
163163
committer: 'stdlib-bot <[email protected]>'
164164
signoff: true
165-
token: ${{ secrets.STDLIB_BOT_FGPAT_REPO_WRITE }}
165+
token: ${{ secrets.STDLIB_BOT_PAT_REPO_WRITE }}
166166
labels: |
167167
documentation
168168
automated-pr

.github/workflows/markdown_tocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ jobs:
132132
commit-message: 'docs: update namespace table of contents'
133133
signoff: true
134134
committer: 'stdlib-bot <[email protected]>'
135-
token: ${{ secrets.STDLIB_BOT_FGPAT_REPO_WRITE }}
135+
token: ${{ secrets.STDLIB_BOT_PAT_REPO_WRITE }}
136136
labels: |
137137
documentation
138138
automated-pr

.github/workflows/namespace_declarations.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ jobs:
127127
commit-message: 'feat: update namespace TypeScript declarations'
128128
committer: 'stdlib-bot <[email protected]>'
129129
signoff: true
130-
token: ${{ secrets.STDLIB_BOT_FGPAT_REPO_WRITE }}
130+
token: ${{ secrets.STDLIB_BOT_PAT_REPO_WRITE }}
131131
labels: |
132132
documentation
133133
automated-pr

0 commit comments

Comments
 (0)