Skip to content

ci: add merge group workflows #1

ci: add merge group workflows

ci: add merge group workflows #1

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:
ci-check-catchall:

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

View workflow run for this annotation

GitHub Actions / PR checks

Invalid workflow file

The workflow is not valid. .github/workflows/pr-checks.yml (Line: 10, Col: 3): The workflow must contain at least one job with no dependencies.
runs-on: ubuntu-latest
needs:
- "python-tests"
- "tools-build-success"
- "check-labels"
- "static-tests"
- "check-commits (commit-msg)"
- "check-commits (pr_check)"
steps:
- name: always succeed
run: "true"