https://github.com/llvmbot created https://github.com/llvm/llvm-project/pull/178592
Backport 7901e2d04c553f6b9e17800059be8cd702c65bac Requested by: @tstellar >From d3fb5940442edd7d458a6306094704dee902fff6 Mon Sep 17 00:00:00 2001 From: Tom Stellard <[email protected]> Date: Wed, 28 Jan 2026 20:39:36 -0800 Subject: [PATCH] workflows/release-tasks: Add missing needs tag to release-lit job (#178224) The job references variables from the validate-tag job, so it needs to have it listed in the 'needs' tag. This is why this job failed for the 22.1.0-rc2 release. (cherry picked from commit 7901e2d04c553f6b9e17800059be8cd702c65bac) --- .github/workflows/release-tasks.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/release-tasks.yml b/.github/workflows/release-tasks.yml index 036e58215e53a..3648e1463e1e0 100644 --- a/.github/workflows/release-tasks.yml +++ b/.github/workflows/release-tasks.yml @@ -80,6 +80,8 @@ jobs: runs-on: ubuntu-24.04 permissions: id-token: write # Requred for pypi publishing + needs: + - validate-tag environment: pypi steps: - name: Checkout LLVM _______________________________________________ llvm-branch-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
