We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4d12931 + 5540a45 commit c2c9e9aCopy full SHA for c2c9e9a
.github/workflows/ci.yml
@@ -3,13 +3,18 @@ name: GitHub CI
3
on:
4
pull_request:
5
push:
6
+ workflow_dispatch:
7
schedule:
8
- cron: 0 0 * * 0
9
10
defaults:
11
run:
12
shell: 'bash -Eeuo pipefail -x {0}'
13
14
+concurrency:
15
+ group: ${{ github.ref }}
16
+ cancel-in-progress: true
17
+
18
jobs:
19
20
generate-jobs:
@@ -41,8 +46,10 @@ jobs:
41
46
)
42
47
')"
43
48
44
- echo "strategy=$strategy" >> "$GITHUB_OUTPUT"
45
- jq . <<<"$strategy" # sanity check / debugging aid
49
+ EOF="EOF-$RANDOM-$RANDOM-$RANDOM"
50
+ echo "strategy<<$EOF" >> "$GITHUB_OUTPUT"
51
+ jq <<<"$strategy" . | tee -a "$GITHUB_OUTPUT"
52
+ echo "$EOF" >> "$GITHUB_OUTPUT"
53
54
test:
55
needs: generate-jobs
0 commit comments