Skip to content

ci: split compliance and build step #8

ci: split compliance and build step

ci: split compliance and build step #8

Workflow file for this run

name: Pull Request
on:
pull_request:
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:
if: opened, synchronize, or reopened, ready_for_review

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

View workflow run for this annotation

GitHub Actions / Pull Request

Invalid workflow file

The workflow is not valid. .github/workflows/pr.yml (Line: 19, Col: 9): Unrecognized named-value: 'opened'. Located at position 1 within expression: opened, synchronize, or reopened, ready_for_review
needs:
- run_compliance_checks
name: Build step
uses: ./.github/workflows/builds.yml
secrets: inherit