Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/pr-checks-complete.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,11 @@ permissions: {}

jobs:
board-sync:
# Repo-scoped writes (assignees, review requests, comments) use
# github-actions[bot]; org-team reads and ProjectsV2 writes still use the PAT.
permissions:
issues: write
pull-requests: write
uses: shader-slang/slang/.github/workflows/pr-board-sync.yml@master
secrets:
SLANG_PR_BOT_TOKEN: ${{ secrets.SLANG_PR_BOT_TOKEN }}
5 changes: 5 additions & 0 deletions .github/workflows/pr-commit-status.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,11 @@ jobs:
# (success -> recovery, failure/error -> Snagged) changes the outcome, and the
# recompute is idempotent regardless.
if: ${{ github.event.state != 'pending' }}
# Repo-scoped writes (assignees, review requests, comments) use
# github-actions[bot]; org-team reads and ProjectsV2 writes still use the PAT.
permissions:
issues: write
pull-requests: write
uses: shader-slang/slang/.github/workflows/pr-board-sync.yml@master
secrets:
SLANG_PR_BOT_TOKEN: ${{ secrets.SLANG_PR_BOT_TOKEN }}
5 changes: 5 additions & 0 deletions .github/workflows/pr-maintenance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,11 @@ jobs:
if: >-
github.event_name != 'pull_request_review' ||
github.event.pull_request.head.repo.fork == false
# Repo-scoped writes (assignees, review requests, comments) use
# github-actions[bot]; org-team reads and ProjectsV2 writes still use the PAT.
permissions:
issues: write
pull-requests: write
uses: shader-slang/slang/.github/workflows/pr-board-sync.yml@master
secrets:
SLANG_PR_BOT_TOKEN: ${{ secrets.SLANG_PR_BOT_TOKEN }}
5 changes: 5 additions & 0 deletions .github/workflows/pr-review-fork-apply.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,11 @@ jobs:
# Only when the bridge completed successfully (it always should; this guards
# against a cancelled/failed relay run).
if: ${{ github.event.workflow_run.conclusion == 'success' }}
# Repo-scoped writes (assignees, review requests, comments) use
# github-actions[bot]; org-team reads and ProjectsV2 writes still use the PAT.
permissions:
issues: write
pull-requests: write
uses: shader-slang/slang/.github/workflows/pr-board-sync.yml@master
secrets:
SLANG_PR_BOT_TOKEN: ${{ secrets.SLANG_PR_BOT_TOKEN }}
5 changes: 5 additions & 0 deletions .github/workflows/pr-sweep-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@ permissions: {}

jobs:
board-sweep:
# Repo-scoped writes (assignees, review requests, comments) use
# github-actions[bot]; org-team reads and ProjectsV2 writes still use the PAT.
permissions:
issues: write
pull-requests: write
uses: shader-slang/slang/.github/workflows/pr-board-sync.yml@master
with:
mode: sweep
Expand Down
Loading