We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46df4a2 commit b747fa8Copy full SHA for b747fa8
.github/workflows/klass-api-build-and-deploy-pr.yml
@@ -1,6 +1,10 @@
1
name: klass-api-build-and-deploy-pr.yml
2
on:
3
workflow_dispatch:
4
+ inputs:
5
+ app:
6
+ description: 'App name'
7
+ required: true
8
push:
9
10
jobs:
@@ -75,5 +79,6 @@ jobs:
75
79
RESOURCE: .nais/test/klass-api-pr.yaml
76
80
DEPLOY_SERVER: deploy.ssb.cloud.nais.io:443
77
81
WORKLOAD_IMAGE: ${{ needs.build.outputs.image }}
78
- VAR: pr-number=${{ github.event.number != null && github.event.number || 1 }}
82
+ VAR: app-name=${{github.event.inputs.app != null || 'pr'}}
83
TELEMETRY: ${{ needs.build.outputs.telemetry }}
84
+
0 commit comments