Commit df8b7ac
committed
fix(workflows): use GITHUB_TOKEN as fallback in scheduled triage
The scheduled issue triage workflow is designed to use a generated GitHub App token. If the "Generate GitHub App Token" step is skipped, the workflow would fail because the GITHUB_TOKEN environment variable would
be empty.
This change introduces a fallback to the default secrets.GITHUB_TOKEN. This ensures that the workflow can still proceed with the default token if the app token is unavailable, increasing the reliability of the
issue triage process.1 parent b4e01eb commit df8b7ac
File tree
2 files changed
+2
-2
lines changed- .github/workflows
- examples/workflows/issue-triage
2 files changed
+2
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
69 | 69 | | |
70 | 70 | | |
71 | 71 | | |
72 | | - | |
| 72 | + | |
73 | 73 | | |
74 | 74 | | |
75 | 75 | | |
| |||
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
69 | 69 | | |
70 | 70 | | |
71 | 71 | | |
72 | | - | |
| 72 | + | |
73 | 73 | | |
74 | 74 | | |
75 | 75 | | |
| |||
0 commit comments