-
Notifications
You must be signed in to change notification settings - Fork 960
48 lines (48 loc) · 1.41 KB
/
e2e-matrix-trigger.yaml
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
name: E2EMatrixTrigger
on:
schedule:
- cron: '7 */8 * * *'
push:
branches:
- 'main'
- 'release-v*'
- 'staging/*'
workflow_run:
workflows:
- ApprovalComment
types:
- completed
workflow_dispatch:
inputs:
region:
required: true
default: 'us-east-2'
type: choice
options:
- "us-east-1"
- "us-east-2"
cleanup:
required: true
default: true
type: boolean
jobs:
resolve:
if: (github.repository == 'aws/karpenter-provider-aws' && (github.event_name != 'workflow_run' || github.event.workflow_run.conclusion == 'success')) || github.event_name == 'workflow_dispatch'
uses: ./.github/workflows/resolve-args.yaml
with:
allowed_comment: "snapshot"
e2e-matrix:
permissions:
id-token: write # aws-actions/[email protected]
statuses: write # ./.github/actions/commit-status/start
needs: [resolve]
if: needs.resolve.outputs.SHOULD_RUN == 'true'
uses: ./.github/workflows/e2e-matrix.yaml
with:
git_ref: ${{ needs.resolve.outputs.GIT_REF }}
region: ${{ inputs.region || 'us-east-2' }}
workflow_trigger: "matrix"
# Default to true unless using a workflow_dispatch
cleanup: ${{ github.event_name != 'workflow_dispatch' && true || inputs.cleanup }}
secrets:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}