Skip to content

Commit

Permalink
Fix conformance testing failure with inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathan-innis committed Oct 26, 2023
1 parent 8b4f000 commit 2c062fa
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/e2e-conformance-trigger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,17 @@ on:
workflows: [ApprovalComment]
types: [completed]
workflow_dispatch:
region:
required: true
default: 'eu-west-1'
type: choice
options:
- "us-east-1"
- "eu-west-1"
cleanup:
required: true
default: true
type: boolean
jobs:
resolve:
if: (github.repository == 'aws/karpenter' && (github.event_name != 'workflow_run' || github.event.workflow_run.conclusion == 'success')) || github.event_name == 'workflow_dispatch'
Expand All @@ -22,8 +33,9 @@ jobs:
k8s_version: [ "1.23", "1.24", "1.25", "1.26", "1.27", "1.28" ]
uses: ./.github/workflows/e2e-matrix.yaml
with:
region: "eu-west-1"
region: ${{ inputs.region || 'eu-west-1' }}
k8s_version: ${{ matrix.k8s_version }}
workflow_trigger: "conformance"
cleanup: ${{ inputs.cleanup || true }}
secrets:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}

0 comments on commit 2c062fa

Please sign in to comment.