Humble Pi by Matt Parker (15%) #26
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: "Bookshelf Action: Issue Comment" | |
on: | |
issue_comment: | |
types: [created] | |
jobs: | |
bookshelf-action: | |
name: Bookshelf Action | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2.3.4 | |
with: | |
ref: ${{ github.head_ref }} | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Run Bookshelf Action | |
uses: AnandChowdhary/bookshelf-action@HEAD | |
with: | |
command: "onIssueComment" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |