We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 992b7fe commit c7435c1Copy full SHA for c7435c1
.github/workflows/galaxy-demo-tests.yaml
@@ -2,6 +2,11 @@ name: "Galaxy demo tests"
2
3
on:
4
workflow_dispatch:
5
+ inputs:
6
+ extra-tag:
7
+ required: true
8
+ type: string
9
+ default: "in-service"
10
schedule:
11
- cron: '0 0 * * 6' # Runs every Saturday at 12am UTC
12
- cron: '0 0 * * 0' # Runs every Sunday at 12am UTC
@@ -18,6 +23,7 @@ jobs:
18
23
secrets: inherit
19
24
uses: ./.github/workflows/tg-demo-tests-impl.yaml
20
25
with:
26
+ extra-tag: ${{ inputs.extra-tag }}
21
27
docker-image: ${{ needs.build-artifact.outputs.dev-docker-image }}
22
28
wheel-artifact-name: ${{ needs.build-artifact.outputs.wheel-artifact-name }}
29
build-artifact-name: ${{ needs.build-artifact.outputs.build-artifact-name }}
0 commit comments