Skip to content

Commit 39e2ff9

Browse files
committed
ci: add conformance suite version override to workflow_dispatch
1 parent bc3d126 commit 39e2ff9

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/conformance.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,18 @@ on:
1717
schedule:
1818
- cron: '55 11 * * 1'
1919
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
2025

2126
jobs:
2227
build:
2328
if: ${{ github.repository == 'panva/node-oidc-provider' || github.event_name == 'workflow_dispatch' }}
2429
uses: panva/.github/.github/workflows/build-conformance-suite.yml@main
2530
with:
26-
version: ${{ vars.CONFORMANCE_SUITE_VERSION || '' }}
31+
version: ${{ inputs.conformance_suite_version || vars.CONFORMANCE_SUITE_VERSION || '' }}
2732

2833
run:
2934
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)