[llvm-branch-commits] [llvm] release/20.x: workflows/release-binaries-all: Add missing secret input (#126921) (PR #128884)

via llvm-branch-commits llvm-branch-commits at lists.llvm.org
Wed Feb 26 06:50:52 PST 2025


https://github.com/llvmbot created https://github.com/llvm/llvm-project/pull/128884

Backport a684e0ea57ebb93c81506c066afb25cb496dcc11

Requested by: @tstellar

>From 83058aadeef4a2995c2610abe3119ed86371cd3e Mon Sep 17 00:00:00 2001
From: Tom Stellard <tstellar at redhat.com>
Date: Wed, 12 Feb 2025 10:01:46 -0800
Subject: [PATCH] workflows/release-binaries-all: Add missing secret input
 (#126921)

Since d194c6b9a7fdda7a61abcd6bfe39ab465bf0cc87 this workflow was missing
the secret input which was causing it to fail.

(cherry picked from commit a684e0ea57ebb93c81506c066afb25cb496dcc11)
---
 .github/workflows/release-binaries-all.yml | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/.github/workflows/release-binaries-all.yml b/.github/workflows/release-binaries-all.yml
index d18b9b0b5c2ff..fd4694ebea32d 100644
--- a/.github/workflows/release-binaries-all.yml
+++ b/.github/workflows/release-binaries-all.yml
@@ -27,6 +27,10 @@ on:
         required: true
         default: false
         type: boolean
+    secrets:
+      RELEASE_TASKS_USER_TOKEN:
+        description: "Secret used to check user permissions."
+        required: false
 
   pull_request:
     types:



More information about the llvm-branch-commits mailing list