Skip to content

Warnings!

Warnings! #12

Workflow file for this run

# Note that this doesn't work for external contributors!
name: PR bot comment test
on:
pull_request:
permissions:
pull-requests: write
jobs:
run:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: cat <<< "$heck"
env:
heck: ${{toJSON(github.event)}}
- run: gh pr comment ${{github.event.pull_request.html_url}} --body "Hello, world from run ${{github.run_number}}" --create-if-none --edit-last
env:
GH_TOKEN: ${{github.token}}