From b13faa30b770c203e867afc7b30bc38d82a6a9f5 Mon Sep 17 00:00:00 2001 From: Bassam Khouri Date: Sat, 31 Jan 2026 11:01:47 +0100 Subject: [PATCH 1/2] GHA: Add PR dependency check Add a workflow that will check if dependent PR are merged. If not, fail the build. --- .github/workflows/pull_request_dependency_check.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/workflows/pull_request_dependency_check.yaml diff --git a/.github/workflows/pull_request_dependency_check.yaml b/.github/workflows/pull_request_dependency_check.yaml new file mode 100644 index 00000000000..43bbaa9d160 --- /dev/null +++ b/.github/workflows/pull_request_dependency_check.yaml @@ -0,0 +1,11 @@ +on: + pull_request_target: + types: [opened, edited, reopened, labeled, unlabeled, synchronize] + +permissions: + issues: read + pull-requests: read + +jobs: + check_dependencies: + uses: bkhouri/github-workflows/.github/workflows/github_actions_dependencies.yml@t/main/pr_dependency-check From 68994e4b9a6051c540e9f3611fb112e77d200eca Mon Sep 17 00:00:00 2001 From: "Bassam (Sam) Khouri" Date: Wed, 15 Apr 2026 01:02:00 -0400 Subject: [PATCH 2/2] Update pull_request_dependency_check.yaml --- .github/workflows/pull_request_dependency_check.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull_request_dependency_check.yaml b/.github/workflows/pull_request_dependency_check.yaml index 43bbaa9d160..f96352da0da 100644 --- a/.github/workflows/pull_request_dependency_check.yaml +++ b/.github/workflows/pull_request_dependency_check.yaml @@ -8,4 +8,4 @@ permissions: jobs: check_dependencies: - uses: bkhouri/github-workflows/.github/workflows/github_actions_dependencies.yml@t/main/pr_dependency-check + uses: swiftlang/github-workflows/.github/workflows/github_actions_dependencies.yml@main