File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 5
5
workflow_dispatch :
6
6
7
7
jobs :
8
- pre- check :
8
+ check-if-relevant-files-changed :
9
9
runs-on : ubuntu-latest
10
10
outputs :
11
11
run-check : ${{ steps.paths_filter.outputs.json_or_yaml }}
20
20
- '**/config/*.param.yaml'
21
21
22
22
json-schema-check :
23
- needs : pre- check
24
- if : needs.pre- check.outputs.run-check == 'true'
23
+ needs : check-if-relevant-files-changed
24
+ if : needs.check-if-relevant-files-changed .outputs.run-check == 'true'
25
25
runs-on : ubuntu-latest
26
26
steps :
27
27
- name : Check out repository
31
31
uses : autowarefoundation/autoware-github-actions/json-schema-check@v1
32
32
33
33
no-relevant-changes :
34
- needs : pre- check
35
- if : needs.pre- check.outputs.run-check == 'false'
34
+ needs : check-if-relevant-files-changed
35
+ if : needs.check-if-relevant-files-changed .outputs.run-check == 'false'
36
36
runs-on : ubuntu-latest
37
37
steps :
38
38
- name : Dummy step
You can’t perform that action at this time.
0 commit comments