We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b829ab commit e1149dbCopy full SHA for e1149db
.github/workflows/toolchain-upgrade.yml
@@ -9,8 +9,10 @@ on:
9
workflow_dispatch: # Allow manual dispatching for a custom branch / tag.
10
11
permissions:
12
- contents: read
+ checks: write
13
+ contents: write
14
issues: write
15
+ pull-requests: write
16
17
jobs:
18
create-toolchain-pr:
@@ -31,6 +33,7 @@ jobs:
31
33
current_toolchain_epoch=$(date --date $current_toolchain_date +%s)
32
34
next_toolchain_date=$(date --date "@$(($current_toolchain_epoch + 86400))" +%Y-%m-%d)
35
echo "next_toolchain_date=$next_toolchain_date" >> $GITHUB_ENV
36
+ GH_TOKEN=${{ github.token }}
37
if gh issue list -S \
38
"Toolchain upgrade to nightly-$next_toolchain_date failed" \
39
--json number,title | grep title ; then
0 commit comments