diff --git a/.github/workflows/reopen-issue-on-comment.yml b/.github/workflows/reopen-issue-on-comment.yml index ed9d6ebf4c..276d27d882 100644 --- a/.github/workflows/reopen-issue-on-comment.yml +++ b/.github/workflows/reopen-issue-on-comment.yml @@ -7,12 +7,15 @@ on: jobs: - create_issue: + reopen_issue: runs-on: ubuntu-latest permissions: issues: write statuses: write steps: + - name: Print context + run: | + echo "$GITHUB_CONTEXT" - name: Reopen Issue run: | curl \ @@ -22,4 +25,7 @@ jobs: https://api.github.com/repos/${{ github.repository }}/issues/${{ github.event.issue.number }} \ -d '{"state":"open"}' \ --fail + env: + GITHUB_CONTEXT: ${{ toJson(github) }} +