Skip to content

kernelCTF verify all PRs again #1

kernelCTF verify all PRs again

kernelCTF verify all PRs again #1

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

View workflow run for this annotation

GitHub Actions / .github/workflows/kernelctf-verify-all.yaml

Invalid workflow file

error parsing called workflow ".github/workflows/kernelctf-verify-all.yaml" -> "./.github/workflows/kernelctf-submission-verification.yaml" (source branch with sha:71cdaa24663fb10b9289d72708713ddfaf5e2759) : workflow is not reusable as it is missing a `on.workflow_call` trigger
secrets: inherit
with:
prNumber: ${{ matrix.pr }}
skipRepro: ${{ inputs.skipRepro }}