From 25de4b1a17bcbc5c2df75e9e1c826fb0a6826901 Mon Sep 17 00:00:00 2001 From: Chris Millar Date: Tue, 12 May 2026 12:23:29 -0600 Subject: [PATCH 1/2] Refactor email bot workflow for DA Release Updated email bot workflow to use new environment variables and action versions. --- .github/workflows/email-bot.yaml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/.github/workflows/email-bot.yaml b/.github/workflows/email-bot.yaml index 0b48934c..7c0eefd4 100644 --- a/.github/workflows/email-bot.yaml +++ b/.github/workflows/email-bot.yaml @@ -1,4 +1,4 @@ -name: Dark Alley release email +name: DA Release Bot on: pull_request_target: @@ -14,12 +14,11 @@ jobs: steps: - name: Check out repository - uses: actions/checkout@v6 + uses: actions/checkout@v4 - name: Use email bot uses: adobecom/da-email-bot@main env: - SG_TO_EMAIL: ${{ secrets.SG_TO_EMAIL }} - SG_FROM_EMAIL: ${{ secrets.SG_FROM_EMAIL }} - SG_FROM_NAME: ${{ secrets.SG_FROM_NAME }} - SG_KEY: ${{ secrets.SG_KEY }} - SG_TEMPLATE: 'd-24723d9fc5964674a61426db17553c58' + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + IMS_CLIENT_ID: ${{ secrets.IMS_CLIENT_ID }} + IMS_CLIENT_SECRET: ${{ secrets.IMS_CLIENT_SECRET }} + AEM_API_KEY: ${{ secrets.AEM_API_KEY }} From 9a4bda6df3b40fdce1ff56d6d31d8db647c2146d Mon Sep 17 00:00:00 2001 From: Chris Millar Date: Tue, 12 May 2026 12:24:26 -0600 Subject: [PATCH 2/2] Update checkout action version to v6 --- .github/workflows/email-bot.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/email-bot.yaml b/.github/workflows/email-bot.yaml index 7c0eefd4..18c27e25 100644 --- a/.github/workflows/email-bot.yaml +++ b/.github/workflows/email-bot.yaml @@ -14,7 +14,7 @@ jobs: steps: - name: Check out repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Use email bot uses: adobecom/da-email-bot@main env: