https://github.com/tru updated https://github.com/llvm/llvm-project/pull/212301
>From 9ed0d62db2599d96c86b8329d7fd368523e2280c Mon Sep 17 00:00:00 2001 From: Tom Stellard <[email protected]> Date: Mon, 27 Jul 2026 09:58:39 -0700 Subject: [PATCH] workflows/release-binaries: Add missing action to checkout (#211720) The upload-release-artifact action uses the require-team-membership action so we need to make sure that latter is checkout out when calling upload-release-artifact. (cherry picked from commit 3c6d9cdb08c9245bb4d80e3262f74ea372046bcb) --- .github/workflows/release-binaries.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/release-binaries.yml b/.github/workflows/release-binaries.yml index a0434acbe8296..79f327c4d37d1 100644 --- a/.github/workflows/release-binaries.yml +++ b/.github/workflows/release-binaries.yml @@ -385,6 +385,7 @@ jobs: with: persist-credentials: false sparse-checkout: | + .github/workflows/require-team-membership .github/workflows/upload-release-artifact .github/workflows/validate-release-version llvm/utils/release/github-upload-release.py _______________________________________________ llvm-branch-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
