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 11e2c23 + f1848ce commit e6775adCopy full SHA for e6775ad
.github/workflows/wokwi.yml
@@ -15,14 +15,17 @@ env:
15
jobs:
16
wokwi-test:
17
name: Wokwi ${{ matrix.chip }} ${{ matrix.type }} tests
18
- if: github.event.workflow_run.conclusion != 'skipped' || github.event.workflow_run.conclusion != 'cancelled'
+ if: |
19
+ github.event.workflow_run.conclusion == 'success' ||
20
+ github.event.workflow_run.conclusion == 'failure' ||
21
+ github.event.workflow_run.conclusion == 'timed_out'
22
runs-on: ubuntu-latest
23
env:
24
id: ${{ github.event.workflow_run.head_sha }}-${{ matrix.chip }}-${{ matrix.type }}
- permissions:
- contents: read
- actions: read
25
- statuses: write
+ # permissions:
26
+ # contents: read
27
+ # actions: read
28
+ # statuses: write
29
strategy:
30
fail-fast: false
31
matrix:
0 commit comments