Try to delete label, PR trigger side #29
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# name: Token issue debugging | |
# on: | |
# pull_request: | |
# branches: [ master ] | |
# jobs: | |
# debugging: | |
# runs-on: ubuntu-latest | |
# permissions: write-all | |
# steps: | |
# - name: Write a comment on a PR | |
# run: | | |
# curl -LsX POST -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" -d '{"body":"Hello :)"}' "${{ github.event.pull_request.comments_url }}" | |
# echo $? |