From e552d21ea27b89b284707873516d14fc92818b5a Mon Sep 17 00:00:00 2001 From: Justin Sing <32938975+singjc@users.noreply.github.com> Date: Wed, 24 Jan 2024 00:53:34 -0500 Subject: [PATCH] Update auto-pr-desc.yml --- .github/workflows/auto-pr-desc.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/auto-pr-desc.yml b/.github/workflows/auto-pr-desc.yml index bc80cb57..edbf7311 100644 --- a/.github/workflows/auto-pr-desc.yml +++ b/.github/workflows/auto-pr-desc.yml @@ -15,16 +15,16 @@ jobs: steps: # Step 1: Use an action to generate the pull request description - name: Generate PR Description - uses: octue/generate-pull-request-description@1.0.0.beta-2 + uses: octue/generate-pull-request-description@main id: pr-description with: pull_request_url: ${{ github.event.pull_request.url }} - api_token: ${{ secrets.token }} + api_token: ${{ secrets.GITHUB_TOKEN }} # Step 2: Update the pull request body using the generated description - name: Update pull request body uses: riskledger/update-pr-description@v2 with: body: ${{ steps.pr-description.outputs.pull_request_description }} - token: ${{ secrets.token }} + token: ${{ secrets.GITHUB_TOKEN }}