diff --git a/.github/workflows/pr-issue_management.yml b/.github/workflows/pr-issue_management.yml index 3d06c3a..fe8b0f3 100644 --- a/.github/workflows/pr-issue_management.yml +++ b/.github/workflows/pr-issue_management.yml @@ -10,6 +10,9 @@ jobs: issues: write pull-requests: write steps: + - name: Checkout repository + uses: actions/checkout@v2 + - name: Extract issue ID and link PR to issue if: github.event.action == 'opened' || github.event.action == 'reopened' run: | @@ -32,4 +35,4 @@ jobs: gh issue edit $ISSUE_ID --add-label "done" fi env: - GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}