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
10 changes: 10 additions & 0 deletions .github/actionlint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,13 @@ self-hosted-runner:
labels:
- gpu-bench
- gpu-ci

paths:
.github/workflows/**/*.{yml,yaml}:
ignore:
# `actions/create-github-app-token@v3` renamed `app-id` to `client-id`
# and deprecated the former. actionlint's bundled metadata for the action
# predates the rename, so it reports the new input as unknown and the
# deprecated one as missing. Drop these once actionlint refreshes it.
- 'input "client-id" is not defined in action "actions/create-github-app-token'
- 'missing input "app-id" which is required by action "actions/create-github-app-token'
2 changes: 1 addition & 1 deletion .github/workflows/repo-sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- uses: actions/create-github-app-token@v3
id: generate-token
with:
app-id: ${{ secrets.TOKEN_APP_ID }}
client-id: ${{ secrets.TOKEN_APP_ID }}
private-key: ${{ secrets.TOKEN_APP_PRIVATE_KEY }}
permission-contents: write
permission-workflows: write
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/typos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
if: steps.typo-check.outputs.typos == 'true'
id: generate-token
with:
app-id: ${{ secrets.TOKEN_APP_ID }}
client-id: ${{ secrets.TOKEN_APP_ID }}
private-key: ${{ secrets.TOKEN_APP_PRIVATE_KEY }}
permission-contents: write
permission-pull-requests: write
Expand Down