File tree 1 file changed +9
-1
lines changed
1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change 20
20
workflow_dispatch :
21
21
22
22
concurrency :
23
- group : ${{ github.workflow }}-${{ (github.event_name == 'pull_request' && github.event.number) || (github.event_name == 'workflow_dispatch' && github.run_number) || github.sha }}
23
+ group : ${{ github.ref }}-${{ github. workflow }}-${{ (github.event_name == 'pull_request' && github.event.number) || (github.event_name == 'workflow_dispatch' && github.run_number) || github.sha }}
24
24
cancel-in-progress : true
25
25
26
26
jobs :
46
46
net.ipv4.conf.all.forwarding=1 net.ipv6.conf.all.forwarding=1"
47
47
48
48
steps :
49
+ - name : Dump GitHub context
50
+ env :
51
+ GITHUB_CONTEXT : ${{ toJSON(github) }}
52
+ run : echo "$GITHUB_CONTEXT"
53
+ - name : Dump Concurrency context
54
+ env :
55
+ CONCURRENCY_CONTEXT : ${{ github.ref }}-${{ github.workflow }}-${{ (github.event_name == 'pull_request' && github.event.number) || (github.event_name == 'workflow_dispatch' && github.run_number) || github.sha }}
56
+ run : echo "$CONCURRENCY_CONTEXT"
49
57
- name : Checkout
50
58
uses : actions/checkout@v2
51
59
with :
You can’t perform that action at this time.
0 commit comments