File tree Expand file tree Collapse file tree 1 file changed +0
-19
lines changed Expand file tree Collapse file tree 1 file changed +0
-19
lines changed Original file line number Diff line number Diff line change 4
4
types : [created]
5
5
6
6
jobs :
7
- debug :
8
- runs-on : ubuntu-latest
9
- needs : [diff, generate, summary]
10
- if : always() && (vars.ACTIONS_RUNNER_DEBUG || vars.ACTIONS_STEP_DEBUG )
11
- steps :
12
- - name : echo needs
13
- run : echo '${{ toJson(needs) }}'
14
- - name : echo github
15
- run : echo '${{ toJson(github) }}'
16
- - name : echo pull request
17
- run : echo '${{ github.event.issue.pull_request == 'true' }}'
18
- - name : echo comment association
19
- run : echo '${{ github.event.comment.author_association }} - ${{ github.event.comment.author_association == 'MEMBER' || github.event.comment.author_association == 'OWNER' }}'
20
- - name : echo comment body
21
- run : echo '${{ contains(github.event.comment.body, '\n/ci') || startsWith(github.event.comment.body, '/ci') }}'
22
- - name : echo generate diffs
23
- run : echo '${{ needs.generate.outputs.diffs != '{}' && needs.generate.outputs.diffs != '[]' && needs.generate.outputs.diffs != '' }}'
24
- - name : echo generate result
25
- run : echo '${{ needs.generate.result == 'success' }}'
26
7
generate :
27
8
runs-on : ubuntu-latest
28
9
outputs :
You can’t perform that action at this time.
0 commit comments