2020-08-12 14:58:04 +02:00
|
|
|
name: Comment
|
|
|
|
|
|
|
|
on:
|
|
|
|
issues:
|
|
|
|
types:
|
|
|
|
- labeled
|
|
|
|
- unlabeled
|
2021-02-10 15:29:33 +01:00
|
|
|
pull_request_target:
|
2020-08-12 14:58:04 +02:00
|
|
|
types:
|
|
|
|
- labeled
|
|
|
|
- unlabeled
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
give_comment:
|
2020-12-28 21:45:54 +01:00
|
|
|
if: github.event.issue.state == 'open' || github.event.pull_request.state == 'open'
|
2020-08-12 14:58:04 +02:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout Code
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
ref: master
|
|
|
|
- name: Send Issue/Pull request comment
|
2020-12-13 17:21:52 +01:00
|
|
|
uses: peaceiris/actions-label-commenter@v1.8.2
|
2020-08-12 14:58:04 +02:00
|
|
|
with:
|
|
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|