We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc3d126 commit 39e2ff9Copy full SHA for 39e2ff9
.github/workflows/conformance.yml
@@ -17,13 +17,18 @@ on:
17
schedule:
18
- cron: '55 11 * * 1'
19
workflow_dispatch:
20
+ inputs:
21
+ conformance_suite_version:
22
+ description: 'Conformance Suite version override, e.g. release-v5.1.39 (takes precedence over vars.CONFORMANCE_SUITE_VERSION)'
23
+ required: false
24
+ type: string
25
26
jobs:
27
build:
28
if: ${{ github.repository == 'panva/node-oidc-provider' || github.event_name == 'workflow_dispatch' }}
29
uses: panva/.github/.github/workflows/build-conformance-suite.yml@main
30
with:
- version: ${{ vars.CONFORMANCE_SUITE_VERSION || '' }}
31
+ version: ${{ inputs.conformance_suite_version || vars.CONFORMANCE_SUITE_VERSION || '' }}
32
33
run:
34
runs-on: ubuntu-latest
0 commit comments