Skip to content

Commit 1139510

Browse files
woody-applepull[bot]
authored andcommitted
Debugging this
1 parent 2a2b209 commit 1139510

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/build.yaml

+9-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ on:
2020
workflow_dispatch:
2121

2222
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 }}
2424
cancel-in-progress: true
2525

2626
jobs:
@@ -46,6 +46,14 @@ jobs:
4646
net.ipv4.conf.all.forwarding=1 net.ipv6.conf.all.forwarding=1"
4747

4848
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"
4957
- name: Checkout
5058
uses: actions/checkout@v2
5159
with:

0 commit comments

Comments
 (0)