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
4 changes: 2 additions & 2 deletions .github/workflows/report-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ on:
type: string
default: "tests/rosters"
secrets:
pr-token:
pr_token:
description: Token used to open the promotion PR. Pass a PAT or GitHub App installation token so the PR triggers workflows; defaults to github.token (PR checks will NOT auto-run).
required: false

Expand Down Expand Up @@ -171,7 +171,7 @@ jobs:

- name: Open PR
env:
GH_TOKEN: ${{ secrets.pr-token || github.token }}
GH_TOKEN: ${{ secrets.pr_token || github.token }}
ISSUE: ${{ github.event.issue.number }}
run: |
git config user.name "muster-bot"
Expand Down
4 changes: 2 additions & 2 deletions docs/executable-bug-reports.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ match.
By default, the promotion PR is opened with `GITHUB_TOKEN` and GitHub will not run workflows on it
(a documented GitHub Actions limitation). If you want the promotion PR to automatically trigger
your CI checks, provide a PAT (personal access token) or GitHub App installation token as the
optional `pr-token` secret:
optional `pr_token` secret:

```yaml
jobs:
Expand All @@ -121,7 +121,7 @@ jobs:
with:
data-source: "github:YourOrg/your-data-repo"
secrets:
pr-token: ${{ secrets.MUSTER_PR_TOKEN }}
pr_token: ${{ secrets.MUSTER_PR_TOKEN }}
```

Without this token, you can still run workflows manually by closing and re-opening the PR or by
Expand Down
2 changes: 1 addition & 1 deletion kit/callers/muster-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ jobs:
with:
data-source: "github:BSData/wh40k-11e" # ← repo-specific: your org/repo[@ref]
# secrets:
# pr-token: ${{ secrets.MUSTER_PR_TOKEN }} # optional: lets the promotion PR trigger CI checks
# pr_token: ${{ secrets.MUSTER_PR_TOKEN }} # optional: lets the promotion PR trigger CI checks
Loading