From 80c05e2d2efeb8f8d25e4a1bbde2d13593478146 Mon Sep 17 00:00:00 2001 From: rory Date: Fri, 17 Nov 2023 15:23:14 -0800 Subject: [PATCH] Make OSBotify create the checklist --- .github/workflows/createDeployChecklist.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/createDeployChecklist.yml b/.github/workflows/createDeployChecklist.yml index 9a1cac41ed69..dde65f5a1503 100644 --- a/.github/workflows/createDeployChecklist.yml +++ b/.github/workflows/createDeployChecklist.yml @@ -14,7 +14,15 @@ jobs: - name: Setup Node uses: ./.github/actions/composite/setupNode + - name: Set up git for OSBotify + id: setupGitForOSBotify + uses: ./.github/actions/composite/setupGitForOSBotifyApp + with: + GPG_PASSPHRASE: ${{ secrets.LARGE_SECRET_PASSPHRASE }} + OS_BOTIFY_APP_ID: ${{ secrets.OS_BOTIFY_APP_ID }} + OS_BOTIFY_PRIVATE_KEY: ${{ secrets.OS_BOTIFY_PRIVATE_KEY }} + - name: Create or update deploy checklist uses: ./.github/actions/javascript/createOrUpdateStagingDeploy with: - GITHUB_TOKEN: ${{ github.token }} + GITHUB_TOKEN: ${{ steps.setupGitForOSBotify.outputs.OS_BOTIFY_API_TOKEN }}