kernelCTF verify all PRs again #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Verify all PRs again | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
prs: | ||
description: 'PRs to verify' | ||
type: string | ||
required: true | ||
skipRepro: | ||
description: 'Skip reproduction' | ||
type: boolean | ||
required: false | ||
default: false | ||
permissions: {} | ||
jobs: | ||
tests: | ||
strategy: | ||
matrix: | ||
pr: ${{ fromJSON(inputs.prs) }} | ||
fail-fast: false # do not cancel test of other targets | ||
uses: ./.github/workflows/kernelctf-submission-verification.yaml | ||
Check failure on line 21 in .github/workflows/kernelctf-verify-all.yaml
|
||
secrets: inherit | ||
with: | ||
prNumber: ${{ matrix.pr }} | ||
skipRepro: ${{ inputs.skipRepro }} |