25 lines
423 B
YAML
25 lines
423 B
YAML
name: Label Commenter
|
|
|
|
on:
|
|
issues:
|
|
types:
|
|
- labeled
|
|
- unlabeled
|
|
pull_request_target:
|
|
types:
|
|
- labeled
|
|
- unlabeled
|
|
|
|
jobs:
|
|
comment:
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
ref: master
|
|
|
|
- name: Label Commenter
|
|
uses: peaceiris/actions-label-commenter@v1
|
|
with:
|
|
github_token: ${{ secrets.JF_BOT_TOKEN }}
|