Commit 1043922
Fix GitHub App token scope for internal repository access
The workflow was failing because the GitHub App token generated by
actions/create-github-app-token@v1 was only scoped to the current
repository (kernel-src-tree) by default. When it tried to checkout
kernel-container-build (which has INTERNAL visibility), the token
didn't have access, resulting in "Repository not found" errors.
Added explicit repositories parameter to all token generation steps
to grant access to all required repositories:
- kernel-tools
- kernel-src-tree
- kernel-src-tree-tools
- kernel-container-build
This fix applies to all 5 token generation steps in the workflow:
- build job
- boot job
- test-kselftest job
- compare-results job
- create-pr job
Fixes: https://github.com/ctrliq/kernel-src-tree/actions/runs/19970287958
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>1 parent 53bad78 commit 1043922
1 file changed
+12
-0
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
27 | 27 | | |
28 | 28 | | |
29 | 29 | | |
| 30 | + | |
| 31 | + | |
30 | 32 | | |
31 | 33 | | |
32 | 34 | | |
| |||
110 | 112 | | |
111 | 113 | | |
112 | 114 | | |
| 115 | + | |
| 116 | + | |
113 | 117 | | |
114 | 118 | | |
115 | 119 | | |
| |||
171 | 175 | | |
172 | 176 | | |
173 | 177 | | |
| 178 | + | |
| 179 | + | |
174 | 180 | | |
175 | 181 | | |
176 | 182 | | |
| |||
258 | 264 | | |
259 | 265 | | |
260 | 266 | | |
| 267 | + | |
| 268 | + | |
| 269 | + | |
261 | 270 | | |
262 | 271 | | |
263 | 272 | | |
| |||
526 | 535 | | |
527 | 536 | | |
528 | 537 | | |
| 538 | + | |
| 539 | + | |
| 540 | + | |
529 | 541 | | |
530 | 542 | | |
531 | 543 | | |
| |||
0 commit comments