-
-
Notifications
You must be signed in to change notification settings - Fork 3
29 lines (26 loc) · 1.08 KB
/
issue-check-helper.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
name: Issue Helper
on:
issues:
types: [labeled]
jobs:
reply-helper:
runs-on: ubuntu-latest
steps:
- name: help wanted
if: github.event.label.name == 'help wanted'
uses: actions-cool/[email protected]
with:
actions: 'create-comment'
token: ${{ secrets.GITHUB_TOKEN }}
issue-number: ${{ github.event.issue.number }}
body: |
👋 @${{ github.event.issue.user.login }}. We totally like your proposal/feedback, welcome PR。
- name: need reproduce
if: github.event.label.name == 'need reproduce'
uses: actions-cool/[email protected]
with:
actions: 'create-comment'
token: ${{ secrets.GITHUB_TOKEN }}
issue-number: ${{ github.event.issue.number }}
body: |
👋 @${{ github.event.issue.user.login }}. Thank you for reporting this issue. In order for us to address it effectively, could you please provide a minimal reproducible demo or step? This will help us better understand the problem and work towards a solution. Thank you!