Skip to content

ci: split compliance and build step #4

ci: split compliance and build step

ci: split compliance and build step #4

Workflow file for this run

name: Pull Request
on:
pull_request:
types: [opened, synchronize, reopened, edited, ready_for_review]
workflow_dispatch:
# Cancels in-progress workflows for a PR when updated
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
run_compliance_checks:
name: Compliance Checks
uses: ./.github/workflows/compliance.yml
secrets: inherit
run_builds:
needs:
- run_compliance_checks
name: Build step
uses: ./.github/workflows/builds.yml

Check failure on line 23 in .github/workflows/pr.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/pr.yml

Invalid workflow file

error parsing called workflow ".github/workflows/pr.yml" -> "./.github/workflows/builds.yml" : workflow is not reusable as it is missing a `on.workflow_call` trigger
secrets: inherit