From 61bbd134d1b2b4216068a2f3814b5cb7397bffdc Mon Sep 17 00:00:00 2001 From: Jordan Dominion Date: Sun, 21 Jul 2024 22:06:50 -0400 Subject: [PATCH] Fix master merge token generation --- .github/workflows/stable-merge.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/stable-merge.yml b/.github/workflows/stable-merge.yml index becdb02839..bec358aca7 100644 --- a/.github/workflows/stable-merge.yml +++ b/.github/workflows/stable-merge.yml @@ -32,6 +32,8 @@ jobs: dotnet run -c Release --no-build --project tools/Tgstation.Server.ReleaseNotes --token-output-file ${{ runner.temp }}/installation_secret.txt ${{ secrets.TGS_CI_GITHUB_APP_TOKEN_BASE64 }} echo "INSTALLATION_TOKEN=$(cat ${{ runner.temp }}/installation_secret.txt)" >> $GITHUB_ENV rm ${{ runner.temp }}/installation_secret.txt + env: + TGS_RELEASE_NOTES_TOKEN: ${{ secrets.DEV_PUSH_TOKEN }} - name: Main Checkout uses: actions/checkout@v4