[llvm-branch-commits] [llvm] release/23.x: workflows/upload-release-artifact: Use new self-repository reference (#213366) (PR #213929)
via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Tue Aug 4 05:55:37 PDT 2026
https://github.com/llvmbot created https://github.com/llvm/llvm-project/pull/213929
Backport 37f4eeee65940dcac53e816c4b324fb607328e0e
Requested by: @tstellar
>From 8d78d0b317850d7d26883b2804b00ebdf44c1be3 Mon Sep 17 00:00:00 2001
From: Tom Stellard <tstellar at redhat.com>
Date: Tue, 4 Aug 2026 05:38:29 -0700
Subject: [PATCH] workflows/upload-release-artifact: Use new self-repository
reference (#213366)
This is for composite actions.
https://github.blog/changelog/2026-07-30-reference-same-repository-actions-with-self-repository-syntax/
(cherry picked from commit 37f4eeee65940dcac53e816c4b324fb607328e0e)
---
.github/workflows/upload-release-artifact/action.yml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/upload-release-artifact/action.yml b/.github/workflows/upload-release-artifact/action.yml
index ce0ec9a13b9b9..81a7e906ae150 100644
--- a/.github/workflows/upload-release-artifact/action.yml
+++ b/.github/workflows/upload-release-artifact/action.yml
@@ -42,7 +42,7 @@ runs:
using: "composite"
steps:
- name: Validate Input
- uses: ./.github/workflows/validate-release-version
+ uses: $/.github/workflows/validate-release-version
with:
release-version: ${{ inputs.release-version }}
@@ -102,7 +102,7 @@ runs:
pip install --require-hashes -r ./llvm/utils/git/requirements.txt
- name: Check Permissions
- uses: ./.github/workflows/require-team-membership
+ uses: $/.github/workflows/require-team-membership
with:
team-slug: llvm-release-managers
LLVM_TOKEN_GENERATOR_CLIENT_ID: ${{ inputs.LLVM_TOKEN_GENERATOR_CLIENT_ID }}
More information about the llvm-branch-commits
mailing list