-
Notifications
You must be signed in to change notification settings - Fork 4
27 lines (23 loc) · 824 Bytes
/
issues.yml
File metadata and controls
27 lines (23 loc) · 824 Bytes
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
name: Comment on new issues
on:
issues:
types: [opened]
permissions:
contents: read
pull-requests: write
issues: write
jobs:
triage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Comment on new issues
if: github.event_name == 'issues' && github.event.action == 'opened'
uses: peter-evans/create-or-update-comment@v1
with:
token: "${{ secrets.GITHUB_TOKEN }}"
issue-number: ${{ github.event.issue.number }}
body: |
Thank you for opening this issue 🎉
Please do not start working on this issue or submit a pull request until a maintainer has assigned it to you. This helps us manage the workflow and avoid duplicate efforts.
>We appreciate your understanding and cooperation.