ci: add merge group workflows #5
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# 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 | |
ci-check-catchall: | |
runs-on: ubuntu-latest | |
needs: | |
- "static-tests" | |
- "tools-build" | |
steps: | |
- name: always succeed | |
run: "true" |