forked from crc-org/crc
-
Notifications
You must be signed in to change notification settings - Fork 0
34 lines (31 loc) · 990 Bytes
/
windows-e2e.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: tester-windows
on:
workflow_run:
workflows: [Build Windows artifacts]
types:
- completed
jobs:
windows-e2e-ocp:
# https://docs.github.com/en/webhooks/webhook-events-and-payloads#workflow_run
if: |
github.event.workflow_run.conclusion == 'success' &&
github.event.workflow_run.event == 'pull_request' &&
github.event.workflow_run.triggering_actor != 'dependabot[bot]'
uses: crc-org/crc/.github/workflows/windows-qe-tpl.yml@main
strategy:
fail-fast: false
matrix:
qe-type: ['e2e','integration']
preset: ['openshift', 'microshift', 'all']
exclude:
- qe-type: 'e2e'
preset: 'all'
- qe-type: 'integration'
preset: 'openshift'
- qe-type: 'integration'
preset: 'microshift'
with:
trigger-workflow-run-id: ${{ github.event.workflow_run.id }}
qe-type: ${{matrix.qe-type}}
preset: ${{matrix.preset}}
secrets: inherit