tqdm/.github/workflows/comment-bot.yml

18 lines
525 B
YAML
Raw Normal View History

2024-10-06 22:33:28 +00:00
# runs on any comment matching the format `/tag <tagname> <commit>`
2020-07-03 16:54:50 +00:00
name: Comment Bot
on:
2023-03-03 14:36:36 +00:00
issue_comment: {types: [created]}
pull_request_review_comment: {types: [created]}
2020-07-03 16:54:50 +00:00
jobs:
2024-10-06 22:33:28 +00:00
tag:
2020-07-03 16:54:50 +00:00
runs-on: ubuntu-latest
2024-10-06 22:33:28 +00:00
permissions: {contents: write, pull-requests: write, issues: write}
2020-07-03 16:54:50 +00:00
steps:
2024-02-05 21:33:55 +00:00
- uses: actions/checkout@v4
2020-07-03 16:54:50 +00:00
with:
2024-10-06 22:33:28 +00:00
fetch-depth: 0
token: ${{ secrets.GH_TOKEN || github.token }}
- uses: casperdcl/comment-bot@v1
2020-07-03 16:54:50 +00:00
with:
2024-10-06 22:33:28 +00:00
token: ${{ secrets.GH_TOKEN || github.token }}