From dbe21223a36df18c48550437906e033f7b036d3b Mon Sep 17 00:00:00 2001 From: Shinrai Date: Wed, 26 Aug 2026 02:17:51 -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 fcee49e..150a294 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 2ca7896..b3b36d8 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 b364f7d..ba7aa3d 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 02c3aa0ecc11025dcf9d5729d6b5649b9b8567ac Mon Sep 17 00:00:00 2001 From: Shinrai Date: Wed, 26 Aug 2026 06:37:35 -0700 Subject: [PATCH 2/2] ci: retrigger feature-pr against the fixed @v4 (BOT_NAME/BOT_EMAIL now recognized)