Skip to content

Commit

Permalink
chore: add new workflow for smoke-test (#1206)
Browse files Browse the repository at this point in the history
  • Loading branch information
tommartensen authored Mar 5, 2024
1 parent 334ee32 commit 9ea1a0b
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/smoke-test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Smoke test automation-flavors
run-name: >-
${{
format('Smoking testing automation-flavor version {0} on infra cluster {1}',
inputs.automation-flavors-version,
inputs.cluster
)
}}
on:
workflow_dispatch:
inputs:
automation-flavors-version:
description: automation-flavors version, e.g. 0.10.2
required: true
default: "0.10.1"
cluster:
description: Infra cluster to run smoke test on (in acs-team-temp-dev project)
required: true
default: "actions-pr-48"

jobs:
debug:
runs-on: ubuntu-latest
steps:
- name: Show inputs
run: |
echo "automation-flavors version: ${{ inputs.automation-flavors-version }}"
echo "Cluster: ${{ inputs.cluster }}"

0 comments on commit 9ea1a0b

Please sign in to comment.