Skip to content

kernelCTF verify all PRs again #8

kernelCTF verify all PRs again

kernelCTF verify all PRs again #8

name: kernelCTF 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:
verify:
strategy:
matrix:
pr: ${{ fromJSON(format('[{0}]', inputs.prs)) }}
fail-fast: false # do not cancel test of other targets
uses: ./.github/workflows/kernelctf-submission-verification.yaml
secrets: inherit
with:
prNumber: ${{ matrix.pr }}
skipRepro: ${{ inputs.skipRepro }}