Skip to content

ci: add merge group workflows #2

ci: add merge group workflows

ci: add merge group workflows #2

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
ci-check-catchall:
runs-on: ubuntu-latest
needs:
- "static-tests"
steps:
- name: always succeed
run: "true"