Skip to content

ci: add merge group workflows #4

ci: add merge group workflows

ci: add merge group workflows #4

Workflow file for this run

#
# this workflow defines a catch-all job that depends on all
# checks a PR needs to pass *before it may enter the merge queue*.
#
name: PR checks
on:
pull_request:
jobs:
static-tests:
uses: ./.github/workflows/static-test.yml
tools-build:
uses: ./.github/workflows/tools-buildtest.yml

Check failure on line 13 in .github/workflows/pr-checks.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/pr-checks.yml

Invalid workflow file

error parsing called workflow ".github/workflows/pr-checks.yml" -> "./.github/workflows/tools-buildtest.yml" : workflow is not reusable as it is missing a `on.workflow_call` trigger
ci-check-catchall:
runs-on: ubuntu-latest
needs:
- "static-tests"
- "tools-build"
steps:
- name: always succeed
run: "true"