[llvm] workflows/release-binaries-all: Add missing secret input (PR #126921)

Tom Stellard via llvm-commits llvm-commits at lists.llvm.org
Wed Feb 12 06:53:38 PST 2025


https://github.com/tstellar created https://github.com/llvm/llvm-project/pull/126921

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

>From 7bc6de29483df5d31ed3b0253cebceb3160e5ab8 Mon Sep 17 00:00:00 2001
From: Tom Stellard <tstellar at redhat.com>
Date: Wed, 12 Feb 2025 06:50:46 -0800
Subject: [PATCH] workflows/release-binaries-all: Add missing secret input

Since d194c6b9a7fdda7a61abcd6bfe39ab465bf0cc87 this workflow was missing
the secret inputw which was causing it to fail.
---
 .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-commits mailing list