Skip to content

Commit

Permalink
Merge pull request #128867 from carlocab/debug-label-removal
Browse files Browse the repository at this point in the history
remove-long-timeout-labels: add debug output
  • Loading branch information
carlocab authored Apr 20, 2023
2 parents 8b6867f + 3c2a740 commit 250bbde
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/remove-long-timeout-labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,20 @@ jobs:
permissions:
pull-requests: write # for `gh pr edit`
steps:
- name: Dump event JSON
run: |
echo '```' >> "$GITHUB_STEP_SUMMARY"
jq . "$GITHUB_EVENT_PATH" | tee -a "$GITHUB_STEP_SUMMARY"
echo '```' >> "$GITHUB_STEP_SUMMARY"
echo '```' >> "$GITHUB_STEP_SUMMARY"
jq .workflow_run "$GITHUB_EVENT_PATH" | tee -a "$GITHUB_STEP_SUMMARY"
echo '```' >> "$GITHUB_STEP_SUMMARY"
echo '```' >> "$GITHUB_STEP_SUMMARY"
jq .workflow_run.pull_requests "$GITHUB_EVENT_PATH" | tee -a "$GITHUB_STEP_SUMMARY"
echo '```' >> "$GITHUB_STEP_SUMMARY"
- name: Remove `CI-long-timeout` label
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit 250bbde

Please sign in to comment.