diff options
Diffstat (limited to '.github/workflows/label-commenter.yml')
| -rw-r--r-- | .github/workflows/label-commenter.yml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/.github/workflows/label-commenter.yml b/.github/workflows/label-commenter.yml new file mode 100644 index 0000000000..1d4eaaecdb --- /dev/null +++ b/.github/workflows/label-commenter.yml @@ -0,0 +1,24 @@ +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 }} |
