File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 88 GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
99 GH_REPO : ${{ github.repository }}
1010 NUMBER : ${{ github.event.issue.number }}
11+ BODY : ${{ github.event.issue.body }}
1112
1213jobs :
1314 label-chromium :
1415 runs-on : ubuntu-latest
15- if : contains(github.event.comment.body , 'browser: Chrome') || contains(github.event.comment.body , 'browser: Edge')
16+ if : contains(env.BODY , 'browser: Chrome') || contains(env.BODY , 'browser: Edge')
1617 permissions : write
1718 steps :
1819 - run : gh issue edit "$NUMBER" --add-label "Chromium"
1920 label-firefox :
2021 runs-on : ubuntu-latest
21- if : contains(github.event.comment.body , 'browser: Firefox')
22+ if : contains(env.BODY , 'browser: Firefox')
2223 permissions : write
2324 steps :
2425 - run : gh issue edit "$NUMBER" --add-label "Firefox"
2526 label-safari :
2627 runs-on : ubuntu-latest
27- if : contains(github.event.comment.body , 'browser: Safari')
28+ if : contains(env.BODY , 'browser: Safari')
2829 permissions : write
2930 steps :
3031 - run : gh issue edit "$NUMBER" --add-label "Safari"
You can’t perform that action at this time.
0 commit comments