mirror of
https://github.com/ceph/ceph
synced 2024-12-24 04:14:07 +00:00
61011a43a3
If a PR description includes `blocked by <pr>` or `depends on <pr>`, this check will fail until the referred PRs are either merged or closed. If this check is made required, it'll also block the merge button. The details of the supported syntax can be checked at: https://github.com/marketplace/actions/pr-dependency-check Signed-off-by: Ernesto Puerta <epuertat@redhat.com>
11 lines
298 B
YAML
11 lines
298 B
YAML
name: Check PR dependencies
|
|
on: [pull_request_target]
|
|
jobs:
|
|
check_dependencies:
|
|
runs-on: ubuntu-latest
|
|
name: Check PR Dependencies
|
|
steps:
|
|
- uses: gregsdennis/dependencies-action@80b5ffec566913b1494d5a8577ab0d60e476271d
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|