[llvm-branch-commits] [llvm] release/22.x: workflows/release-asset-audit: Split workflow into two jobs (#179833) (PR #180370)
via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Sat Feb 7 13:38:15 PST 2026
https://github.com/llvmbot created https://github.com/llvm/llvm-project/pull/180370
Backport 549172139cf547c3fcaa5d52bd70a55ffc0db286
Requested by: @tstellar
>From a061a4daca049f9097ba7b16434084b55f21fb8e Mon Sep 17 00:00:00 2001
From: Tom Stellard <tstellar at redhat.com>
Date: Thu, 5 Feb 2026 07:06:16 -0800
Subject: [PATCH] workflows/release-asset-audit: Split workflow into two jobs
(#179833)
This way we can assign an environment to the job that uses the
ISSUE_SUBSCRIBER_TOKEN secret.
(cherry picked from commit 549172139cf547c3fcaa5d52bd70a55ffc0db286)
---
.github/workflows/release-asset-audit.yml | 26 ++++++++++++++++++++---
1 file changed, 23 insertions(+), 3 deletions(-)
diff --git a/.github/workflows/release-asset-audit.yml b/.github/workflows/release-asset-audit.yml
index b02bf12fcb7f1..71cc23a64c3b0 100644
--- a/.github/workflows/release-asset-audit.yml
+++ b/.github/workflows/release-asset-audit.yml
@@ -34,10 +34,30 @@ jobs:
run: |
pip install --require-hashes -r ./llvm/utils/git/requirements.txt
python3 ./.github/workflows/release-asset-audit.py $GITHUB_TOKEN
+
+ - name: Upload comment file
+ if: failure()
+ uses: actions/upload-artifact at b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
+ with:
+ name: comment
+ path: |
+ comment
+
+ notify-audit-failed:
+ name: "Notify Audit Failed"
+ runs-on: ubuntu-24.04
+ if: >-
+ github.repository == 'llvm/llvm-project' &&
+ github.event_name != 'pull_request' &&
+ failure()
+ needs:
+ - audit
+ steps:
+ - name: Download Comment
+ uses: actions/download-artifact at 37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
+ with:
+ name: comment
- name: "File Issue"
- if: >-
- github.event_name != 'pull_request' &&
- failure()
uses: actions/github-script at ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
with:
github-token: ${{ secrets.ISSUE_SUBSCRIBER_TOKEN }}
More information about the llvm-branch-commits
mailing list