From 1e81bf5e0c66f10a45645d29bac6e250bb6f0a3b Mon Sep 17 00:00:00 2001 From: Shinrai Date: Wed, 26 Aug 2026 04:43:44 -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 bcf19a8..9e418a0 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 ee64351..551845b 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 c5c5b3bf3657682dd0d30e08f323b4cc25676257 Mon Sep 17 00:00:00 2001 From: Shinrai Date: Wed, 26 Aug 2026 07:00:13 -0700 Subject: [PATCH 2/2] ci: retrigger feature-pr against the fixed @v4 (BOT_NAME/BOT_EMAIL now recognized)