Skip to content

Commit

Permalink
build: update token names
Browse files Browse the repository at this point in the history
---
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
---
  • Loading branch information
Planeshifter committed Jan 30, 2025
1 parent a25ccb1 commit 1a40544
Show file tree
Hide file tree
Showing 17 changed files with 30 additions and 30 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/autoclose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
- name: 'Close pull request'
run: gh pr close "$NUMBER" --comment "$BODY"
env:
GH_TOKEN: ${{ secrets.STDLIB_BOT_GITHUB_TOKEN }}
GH_TOKEN: ${{ secrets.STDLIB_BOT_FGPAT_PR_WRITE }}
GH_REPO: ${{ github.repository }}
NUMBER: ${{ github.event.pull_request.number }}
BODY: |
Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:
- name: 'Close pull request'
run: gh pr close "$NUMBER" --comment "$BODY"
env:
GH_TOKEN: ${{ secrets.STDLIB_BOT_GITHUB_TOKEN }}
GH_TOKEN: ${{ secrets.STDLIB_BOT_FGPAT_PR_WRITE }}
GH_REPO: ${{ github.repository }}
NUMBER: ${{ github.event.pull_request.number }}
BODY: |
Expand Down Expand Up @@ -124,7 +124,7 @@ jobs:
- name: 'Close pull request'
run: gh pr close "$NUMBER" --comment "$BODY"
env:
GH_TOKEN: ${{ secrets.STDLIB_BOT_GITHUB_TOKEN }}
GH_TOKEN: ${{ secrets.STDLIB_BOT_FGPAT_PR_WRITE }}
GH_REPO: ${{ github.repository }}
NUMBER: ${{ github.event.pull_request.number }}
BODY: |
Expand Down Expand Up @@ -164,7 +164,7 @@ jobs:
- name: 'Close pull request'
run: gh pr close "$NUMBER" --comment "$BODY"
env:
GH_TOKEN: ${{ secrets.STDLIB_BOT_GITHUB_TOKEN }}
GH_TOKEN: ${{ secrets.STDLIB_BOT_FGPAT_PR_WRITE }}
GH_REPO: ${{ github.repository }}
NUMBER: ${{ github.event.pull_request.number }}
BODY: |
Expand All @@ -176,7 +176,7 @@ jobs:
- name: 'Lock conversation'
run: gh pr lock "$NUMBER" --reason spam
env:
GH_TOKEN: ${{ secrets.STDLIB_BOT_GITHUB_TOKEN }}
GH_TOKEN: ${{ secrets.STDLIB_BOT_FGPAT_PR_WRITE }}
GH_REPO: ${{ github.repository }}
NUMBER: ${{ github.event.pull_request.number }}

Expand Down Expand Up @@ -204,7 +204,7 @@ jobs:
- name: 'Close pull request'
run: gh pr close "$NUMBER" --comment "$BODY"
env:
GH_TOKEN: ${{ secrets.STDLIB_BOT_GITHUB_TOKEN }}
GH_TOKEN: ${{ secrets.STDLIB_BOT_FGPAT_PR_WRITE }}
GH_REPO: ${{ github.repository }}
NUMBER: ${{ github.event.pull_request.number }}
BODY: |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ jobs:
# Check contributing guidelines acceptance:
- name: 'Check contributing guidelines acceptance'
env:
GITHUB_TOKEN: ${{ secrets.STDLIB_BOT_GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.STDLIB_BOT_FGPAT_PR_WRITE }}
PR_NUMBER: ${{ github.event.pull_request.number || inputs.pull_request_number }}
run: |
. "$GITHUB_WORKSPACE/.github/workflows/scripts/check_contributing_guidelines_acceptance" $PR_NUMBER
2 changes: 1 addition & 1 deletion .github/workflows/first_time_greeting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
# Pin action to full length commit SHA
uses: actions/first-interaction@34f15e814fe48ac9312ccf29db4e74fa767cbab7 # v1.3.0
with:
repo-token: ${{ secrets.STDLIB_BOT_FGPAT_REPO_WRITE }}
repo-token: ${{ secrets.STDLIB_BOT_PAT_REPO_WRITE }}
issue-message: |
:wave: Hi there! :wave:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/generate_pr_commit_message.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:
# Pin action to full length commit SHA
uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043 # v4.0.0
with:
token: ${{ secrets.STDLIB_BOT_FGPAT_REPO_WRITE }}
token: ${{ secrets.STDLIB_BOT_PAT_REPO_WRITE }}
issue-number: ${{ github.event.pull_request.number }}
body: |
### PR Commit Message
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,15 +63,15 @@ jobs:
uses: actions/labeler@8558fd74291d67161a8a78ce36a881fa63b766a9 # v5.0.0
with:
configuration-path: .github/labeler.yml
repo-token: ${{ secrets.CHATBOT_GITHUB_TOKEN }}
repo-token: ${{ secrets.STDLIB_BOT_FGPAT_PR_WRITE }}

# Add "First-time Contributor" label if PR is from a first-time contributor:
- name: 'Add "First-time Contributor" label if PR is from a first-time contributor'
if: ${{ github.event.action == 'opened' || github.event.action == 'reopened' }}
# Pin action to full-length commit SHA
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
with:
github-token: ${{ secrets.CHATBOT_GITHUB_TOKEN }}
github-token: ${{ secrets.STDLIB_BOT_FGPAT_PR_WRITE }}
script: |
const { data: pr } = await github.rest.pulls.get({
'owner': context.repo.owner,
Expand All @@ -96,7 +96,7 @@ jobs:
# Pin action to full length commit SHA
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
with:
github-token: ${{ secrets.CHATBOT_GITHUB_TOKEN }}
github-token: ${{ secrets.STDLIB_BOT_FGPAT_PR_WRITE }}
script: |
await github.rest.issues.addLabels({
'owner': context.repo.owner,
Expand All @@ -111,7 +111,7 @@ jobs:
# Pin action to full length commit SHA
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
with:
github-token: ${{ secrets.CHATBOT_GITHUB_TOKEN }}
github-token: ${{ secrets.STDLIB_BOT_FGPAT_PR_WRITE }}
script: |
await github.rest.issues.addLabels({
'owner': context.repo.owner,
Expand All @@ -126,7 +126,7 @@ jobs:
# Pin action to full length commit SHA
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
with:
github-token: ${{ secrets.CHATBOT_GITHUB_TOKEN }}
github-token: ${{ secrets.STDLIB_BOT_FGPAT_PR_WRITE }}
script: |
try {
await github.rest.issues.removeLabel({
Expand All @@ -144,7 +144,7 @@ jobs:
if: ${{ github.event.action == 'labeled' && github.event.label.name == 'Ready To Merge' }}
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
with:
github-token: ${{ secrets.CHATBOT_GITHUB_TOKEN }}
github-token: ${{ secrets.STDLIB_BOT_FGPAT_PR_WRITE }}
script: |
const labelsToRemove = [ 'Needs Review', 'Needs Changes' ];
for ( const label of labelsToRemove ) {
Expand All @@ -166,7 +166,7 @@ jobs:
# Pin action to full length commit SHA
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
with:
github-token: ${{ secrets.CHATBOT_GITHUB_TOKEN }}
github-token: ${{ secrets.STDLIB_BOT_FGPAT_PR_WRITE }}
script: |
const prAuthor = context.payload.pull_request.user.login;
const { owner, repo } = context.repo;
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/markdown_equations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ jobs:
commit-message: 'docs: update Markdown equation elements'
committer: 'stdlib-bot <[email protected]>'
signoff: true
token: ${{ secrets.STDLIB_BOT_FGPAT_REPO_WRITE }}
token: ${{ secrets.STDLIB_BOT_PAT_REPO_WRITE }}
labels: |
documentation
automated-pr
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/markdown_pkg_urls.yml
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ jobs:
commit-message: 'docs: update Markdown stdlib package URLs'
committer: 'stdlib-bot <[email protected]>'
signoff: true
token: ${{ secrets.STDLIB_BOT_FGPAT_REPO_WRITE }}
token: ${{ secrets.STDLIB_BOT_PAT_REPO_WRITE }}
labels: |
documentation
automated-pr
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/markdown_related_packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ jobs:
commit-message: 'docs: update related packages sections'
committer: 'stdlib-bot <[email protected]>'
signoff: true
token: ${{ secrets.STDLIB_BOT_FGPAT_REPO_WRITE }}
token: ${{ secrets.STDLIB_BOT_PAT_REPO_WRITE }}
labels: |
documentation
automated-pr
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/markdown_tocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ jobs:
commit-message: 'docs: update namespace table of contents'
signoff: true
committer: 'stdlib-bot <[email protected]>'
token: ${{ secrets.STDLIB_BOT_FGPAT_REPO_WRITE }}
token: ${{ secrets.STDLIB_BOT_PAT_REPO_WRITE }}
labels: |
documentation
automated-pr
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/namespace_declarations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ jobs:
commit-message: 'feat: update namespace TypeScript declarations'
committer: 'stdlib-bot <[email protected]>'
signoff: true
token: ${{ secrets.STDLIB_BOT_FGPAT_REPO_WRITE }}
token: ${{ secrets.STDLIB_BOT_PAT_REPO_WRITE }}
labels: |
documentation
automated-pr
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/namespace_exports.yml
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ jobs:
commit-message: 'feat: update namespace exports'
committer: 'stdlib-bot <[email protected]>'
signoff: true
token: ${{ secrets.STDLIB_BOT_FGPAT_REPO_WRITE }}
token: ${{ secrets.STDLIB_BOT_PAT_REPO_WRITE }}
labels: |
automated-pr
team-reviewers: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/run_tests_coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ jobs:
# Pin action to full length commit SHA
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
with:
github-token: ${{ secrets.STDLIB_BOT_FGPAT_REPO_WRITE }}
github-token: ${{ secrets.STDLIB_BOT_PAT_REPO_WRITE }}
script: |
const { data: comments } = await github.rest.issues.listComments({
'issue_number': context.issue.number,
Expand Down Expand Up @@ -279,7 +279,7 @@ jobs:
# Pin action to full length commit SHA
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
with:
github-token: ${{ secrets.STDLIB_BOT_FGPAT_REPO_WRITE }}
github-token: ${{ secrets.STDLIB_BOT_PAT_REPO_WRITE }}
script: |
github.rest.repos.createCommitComment({
'commit_sha': context.sha,
Expand Down Expand Up @@ -358,7 +358,7 @@ jobs:
# Commit and push changes:
- name: 'Commit and push changes'
env:
REPO_GITHUB_TOKEN: ${{ secrets.STDLIB_BOT_FGPAT_REPO_WRITE }}
REPO_GITHUB_TOKEN: ${{ secrets.STDLIB_BOT_PAT_REPO_WRITE }}
USER_NAME: stdlib-bot
run: |
cd ./www-test-code-coverage
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update_cli_permissions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ jobs:
signoff: true
body: |
This PR changes the permissions of project `cli` scripts to be executable.
token: ${{ secrets.STDLIB_BOT_FGPAT_REPO_WRITE }}
token: ${{ secrets.STDLIB_BOT_PAT_REPO_WRITE }}
labels: |
automated-pr
team-reviewers: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update_contributors.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ jobs:
commit-message: 'docs: update list of contributors'
committer: 'stdlib-bot <[email protected]>'
signoff: true
token: ${{ secrets.STDLIB_BOT_FGPAT_REPO_WRITE }}
token: ${{ secrets.STDLIB_BOT_PAT_REPO_WRITE }}
labels: |
documentation
automated-pr
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update_error_databases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ jobs:
commit-message: 'feat: update error databases'
committer: 'stdlib-bot <[email protected]>'
signoff: true
token: ${{ secrets.STDLIB_BOT_FGPAT_REPO_WRITE }}
token: ${{ secrets.STDLIB_BOT_PAT_REPO_WRITE }}
labels: |
documentation
automated-pr
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update_package_meta_data.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ jobs:
commit-message: 'chore: update package meta data'
committer: 'stdlib-bot <[email protected]>'
signoff: true
token: ${{ secrets.STDLIB_BOT_FGPAT_REPO_WRITE }}
token: ${{ secrets.STDLIB_BOT_PAT_REPO_WRITE }}
labels: |
automated-pr
team-reviewers: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update_repl_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ jobs:
commit-message: 'docs: update REPL namespace documentation'
committer: 'stdlib-bot <[email protected]>'
signoff: true
token: ${{ secrets.STDLIB_BOT_FGPAT_REPO_WRITE }}
token: ${{ secrets.STDLIB_BOT_PAT_REPO_WRITE }}
labels: |
documentation
automated-pr
Expand Down

0 comments on commit 1a40544

Please sign in to comment.