File tree 1 file changed +24
-0
lines changed
1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change 8
8
branches :
9
9
- main
10
10
11
+ concurrency :
12
+ group : examples-${{ github.workflow }}-${{ github.ref }}
13
+ cancel-in-progress : true
14
+
11
15
jobs :
16
+ head-commit :
17
+ name : Inspect head commit
18
+ runs-on : ubuntu-latest
19
+ outputs :
20
+ message : ${{ steps.commit.outputs.message }}
21
+ steps :
22
+ - name : Checkout
23
+ uses : actions/checkout@v4
24
+ with :
25
+ ref : ${{github.event.pull_request.head.sha || github.sha}}
26
+ - name : Inspect
27
+ id : commit
28
+ run : echo "message=$(git show -s --format=%s)" >> "$GITHUB_OUTPUT"
29
+
12
30
javascript :
31
+ needs : [head-commit]
32
+ if : " ${{needs.head-commit.outputs.message != 'docs(examples): converted from e2es'}}"
13
33
name : JavaScript
14
34
runs-on : ubuntu-latest
15
35
strategy :
56
76
implementations/${{ matrix.workspace }}/report.json
57
77
58
78
docker :
79
+ needs : [head-commit]
80
+ if : " ${{needs.head-commit.outputs.message != 'docs(examples): converted from e2es'}}"
59
81
name : Docker
60
82
runs-on : ubuntu-latest
61
83
strategy :
@@ -111,6 +133,8 @@ jobs:
111
133
implementations/${{ matrix.workspace }}/report.json
112
134
113
135
url :
136
+ needs : [head-commit]
137
+ if : " ${{needs.head-commit.outputs.message != 'docs(examples): converted from e2es'}}"
114
138
name : URL
115
139
runs-on : ubuntu-latest
116
140
strategy :
You can’t perform that action at this time.
0 commit comments