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.
1 parent 5c04ef4 commit 98d7495Copy full SHA for 98d7495
.github/workflows/compliance.yml
@@ -4,17 +4,7 @@ on:
4
workflow_call:
5
6
jobs:
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
-
16
check_compliance:
17
- if: github.event_name == 'pull_request'
18
runs-on: ubuntu-22.04
19
name: Run compliance checks on patch series (PR)
20
steps:
.github/workflows/twister.yaml
@@ -25,6 +25,8 @@ jobs:
25
26
twister-build-prep:
27
needs: compliance-check
28
+ if: |
29
+ always() && (needs.compliance-check.result == 'success' || needs.compliance-check.result == 'skipped')
30
uses: ./.github/workflows/twister-prep.yaml
31
32
twister-build:
0 commit comments