help-pr-command #24
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: help-pr-command | |
on: | |
repository_dispatch: | |
types: [help-pr-command] | |
jobs: | |
help: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Update comment | |
uses: peter-evans/create-or-update-comment@v4 | |
with: | |
token: ${{ secrets.ACTIONS_BOT_TOKEN }} | |
repository: ${{ github.event.client_payload.github.payload.repository.full_name }} | |
comment-id: ${{ github.event.client_payload.github.payload.comment.id }} | |
body: | | |
> Command | Description | |
> --- | --- | |
> /hello-world | Commit a greeting from the world to hello-world.txt | |
> /black | Format Python using [Black](https://github.com/psf/black) | |
> /reset-demo | Reset the code formatting demo | |
reactions: hooray |