File tree Expand file tree Collapse file tree 2 files changed +3
-10
lines changed
Expand file tree Collapse file tree 2 files changed +3
-10
lines changed Original file line number Diff line number Diff line change 44 workflow_call :
55
66jobs :
7- check_compliance_push :
8- if : github.event_name == 'push'
9- runs-on : ubuntu-22.04
10- name : Run compliance checks on patch series (PR)
11- steps :
12- - name : Do nothing
13- run : |
14- echo "Doing nothing"
15-
167 check_compliance :
17- if : github.event_name == 'pull_request'
188 runs-on : ubuntu-22.04
199 name : Run compliance checks on patch series (PR)
2010 steps :
Original file line number Diff line number Diff line change @@ -21,10 +21,13 @@ concurrency:
2121
2222jobs :
2323 compliance-check :
24+ if : github.event_name == 'pull_request'
2425 uses : ./.github/workflows/compliance.yml
2526
2627 twister-build-prep :
2728 needs : compliance-check
29+ if : |
30+ always() && (needs.compliance-check.result == 'success' || needs.compliance-check.result == 'skipped')
2831 uses : ./.github/workflows/twister-prep.yaml
2932
3033 twister-build :
You can’t perform that action at this time.
0 commit comments