File tree Expand file tree Collapse file tree 3 files changed +8
-1
lines changed Expand file tree Collapse file tree 3 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 13
13
bug-report-response :
14
14
if : github.event.label.name == 'bug' && github.event.issue.state == 'open'
15
15
uses : ./.github/workflows/issue-comment.yml
16
+ secrets :
17
+ token : ${{ secrets.ISSUE_BOT_TOKEN }}
16
18
with :
17
19
issue-number : ${{ github.event.issue.number }}
18
20
message : >
Original file line number Diff line number Diff line change 13
13
message :
14
14
type : string
15
15
required : true
16
+ secrets :
17
+ token :
18
+ required : true
16
19
17
20
jobs :
18
21
post-comment :
19
22
runs-on : ubuntu-latest
20
23
env :
21
- GH_TOKEN : ${{ secrets.ISSUE_BOT_TOKEN }}
24
+ GH_TOKEN : ${{ secrets.token }}
22
25
steps :
23
26
- name : respond to issue
24
27
run : |
Original file line number Diff line number Diff line change 13
13
support-response :
14
14
if : github.event.label.name == 'support' && github.event.issue.state == 'open'
15
15
uses : ./.github/workflows/issue-comment.yml
16
+ secrets :
17
+ token : ${{ secrets.ISSUE_BOT_TOKEN }}
16
18
with :
17
19
issue-number : ${{ github.event.issue.number }}
18
20
message : >
You can’t perform that action at this time.
0 commit comments