File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 20
20
steps :
21
21
- run : |
22
22
echo "Assigning issue ${{ github.event.issue.number }} to ${{ github.event.comment.user.login }}"
23
- gh issue edit ${{ github.event.issue.number }} --add-assignee ${{ github.event.comment.user.login }}
24
- gh issue edit ${{ github.event.issue.number }} --remove-label "help wanted"
23
+ gh issue edit $ISSUE --add-assignee ${{ github.event.comment.user.login }}
24
+ gh issue edit $ISSUE --remove-label "help wanted"
25
+ env:
26
+ GH_TOKEN: ${{ github.token }}
27
+ ISSUE: ${{ github.event.issue.html_url }}
Original file line number Diff line number Diff line change 18
18
if : github.event.issue.state == 'open'
19
19
run : |
20
20
echo "Marking issue ${{ github.event.issue.number }} as help wanted"
21
- gh issue edit ${{ github.event.issue.number }} --add-label "help wanted"
21
+ gh issue edit $ISSUE --add-label "help wanted"
22
+ env :
23
+ GH_TOKEN : ${{ github.token }}
24
+ ISSUE : ${{ github.event.issue.html_url }}
You can’t perform that action at this time.
0 commit comments