added image tag branch condition #25
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Trigger Loadtest | |
on: | |
workflow_dispatch: | |
inputs: | |
branch: | |
description: 'Branch to take tests and helm/cron setup from' | |
required: true | |
default: main | |
push: | |
branch: DBP-1012-setup-loadtest-env #remove later or set to main ? | |
jobs: | |
run_loadtest: | |
permissions: | |
packages: write | |
security-events: write | |
contents: read | |
uses: ./.github/workflows/install-spsh-loadtest.yml | |
with: | |
branch: ${{ inputs.branch }} | |
secrets: | |
KUBECONFIG: ${{ secrets.KUBECONFIG }} |