From bc0aeeea6c2b3cde7eadbfb28237f72774321beb Mon Sep 17 00:00:00 2001 From: Shinrai Date: Wed, 26 Aug 2026 01:54:49 -0700 Subject: [PATCH 1/2] ci: pass BOT_NAME/BOT_EMAIL to v4 release/feature-PR workflows for changelog contributor-list accuracy --- .github/workflows/feature-pr.yml | 2 ++ .github/workflows/hotfixes-release.yml | 2 ++ .github/workflows/next-release.yml | 2 ++ 3 files changed, 6 insertions(+) diff --git a/.github/workflows/feature-pr.yml b/.github/workflows/feature-pr.yml index 9ef7b86..0e92ca9 100644 --- a/.github/workflows/feature-pr.yml +++ b/.github/workflows/feature-pr.yml @@ -57,3 +57,5 @@ jobs: # Map your repo/org secrets to the expected names. BOT_APP_CLIENT_ID: ${{ secrets.CLDMV_BOT_APP_CLIENT_ID }} BOT_APP_PRIVATE_KEY: ${{ secrets.CLDMV_BOT_APP_PRIVATE_KEY }} + BOT_NAME: ${{ secrets.CLDMV_BOT_NAME }} + BOT_EMAIL: ${{ secrets.CLDMV_BOT_EMAIL }} diff --git a/.github/workflows/hotfixes-release.yml b/.github/workflows/hotfixes-release.yml index 96ff761..54d73d4 100644 --- a/.github/workflows/hotfixes-release.yml +++ b/.github/workflows/hotfixes-release.yml @@ -44,6 +44,8 @@ jobs: # Map your repo/org secrets to the expected names. BOT_APP_CLIENT_ID: ${{ secrets.CLDMV_BOT_APP_CLIENT_ID }} BOT_APP_PRIVATE_KEY: ${{ secrets.CLDMV_BOT_APP_PRIVATE_KEY }} + BOT_NAME: ${{ secrets.CLDMV_BOT_NAME }} + BOT_EMAIL: ${{ secrets.CLDMV_BOT_EMAIL }} # Optional release-PR notifier webhooks — each is independently # opt-in: leave one unset and that channel is silently skipped. # Delete the lines you don't use. diff --git a/.github/workflows/next-release.yml b/.github/workflows/next-release.yml index e0b7767..49fce90 100644 --- a/.github/workflows/next-release.yml +++ b/.github/workflows/next-release.yml @@ -50,6 +50,8 @@ jobs: # Map your repo/org secrets to the expected names. BOT_APP_CLIENT_ID: ${{ secrets.CLDMV_BOT_APP_CLIENT_ID }} BOT_APP_PRIVATE_KEY: ${{ secrets.CLDMV_BOT_APP_PRIVATE_KEY }} + BOT_NAME: ${{ secrets.CLDMV_BOT_NAME }} + BOT_EMAIL: ${{ secrets.CLDMV_BOT_EMAIL }} # Optional release-PR notifier webhooks — each is independently # opt-in: leave one unset and that channel is silently skipped. # Delete the lines you don't use. From dfcbec2e04ced0cd5f1a71140060e24dad359cc7 Mon Sep 17 00:00:00 2001 From: Shinrai Date: Wed, 26 Aug 2026 06:09:11 -0700 Subject: [PATCH 2/2] ci: retrigger feature-pr against the fixed @v4 (BOT_NAME/BOT_EMAIL now recognized)