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 5a28761 commit b07efffCopy full SHA for b07efff
.github/workflows/ci-unittest-retagger.yml
@@ -3,12 +3,17 @@ on:
3
schedule:
4
- cron: '0 0 * * 1'
5
workflow_dispatch:
6
+ inputs:
7
+ jobs_to_run:
8
+ type: string
9
+ description: Job selection (Python regex)
10
+ required: false
11
12
jobs:
13
run-retagger:
14
uses: ./.github/workflows/ci-matrix-gen.yml
15
with:
- 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' }}
17
18
merge_all_reports:
19
runs-on: ubuntu-latest
0 commit comments