Skip to content

Commit 38ac0e9

Browse files
authored
GHA: Add PR dependency check (#9671)
Add a workflow that will check if dependent PR are merged. If not, fail the build. Depends on: swiftlang/github-workflows/pull/233
1 parent dda7726 commit 38ac0e9

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
on:
2+
pull_request_target:
3+
types: [opened, edited, reopened, labeled, unlabeled, synchronize]
4+
5+
permissions:
6+
issues: read
7+
pull-requests: read
8+
9+
jobs:
10+
check_dependencies:
11+
uses: swiftlang/github-workflows/.github/workflows/github_actions_dependencies.yml@main

0 commit comments

Comments
 (0)