Skip to content

Commit b07efff

Browse files
committed
Add retagger workflow input
1 parent 5a28761 commit b07efff

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/ci-unittest-retagger.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,17 @@ on:
33
schedule:
44
- cron: '0 0 * * 1'
55
workflow_dispatch:
6+
inputs:
7+
jobs_to_run:
8+
type: string
9+
description: Job selection (Python regex)
10+
required: false
611

712
jobs:
813
run-retagger:
914
uses: ./.github/workflows/ci-matrix-gen.yml
1015
with:
11-
jobs_to_run: python-svm-build-gate-linux-amd64|python-unittest-retagger
16+
jobs_to_run: ${{ github.event.inputs.jobs_to_run || 'python-unittest-retagger' }}
1217

1318
merge_all_reports:
1419
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)