https://github.com/c-rhodes updated https://github.com/llvm/llvm-project/pull/180370
>From fb10824fecabea2aa3c9f1fe281c2625fa6ec14e Mon Sep 17 00:00:00 2001 From: Tom Stellard <[email protected]> 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@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@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0 + with: + name: comment - name: "File Issue" - if: >- - github.event_name != 'pull_request' && - failure() uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0 with: github-token: ${{ secrets.ISSUE_SUBSCRIBER_TOKEN }} _______________________________________________ llvm-branch-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
