Add workflow automating maintainers' comment on new issues (#9488)

* Add workflow automating maintainers' comment on new issues

* Add steps

* Convert steps to a list
This commit is contained in:
Alberto Pérez de Rada Fiol 2020-07-29 14:17:47 +02:00 committed by GitHub
parent b40af82b66
commit 8b882dd512
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

25
.github/workflows/issue.yml vendored Normal file
View file

@ -0,0 +1,25 @@
# This workflow posts an automated comment on every new issue
# https://github.com/marketplace/actions/create-or-update-comment (https://github.com/peter-evans/create-or-update-comment)
name: Automatic Comment
on:
issues:
types: [opened]
jobs:
comment:
name: Comment
runs-on: ubuntu-latest
steps:
- name: Automatic Comment
uses: peter-evans/create-or-update-comment@v1
with:
issue-number: ${{ github.event.issue.number }}
body: |
Thanks for the issue! We'll take your request into consideration and follow up if we decide to tackle this issue.
To our amazing contributors: issues labeled `type: bug` are always up for grabs, but for feature requests, please wait until we add a `ready for dev` before starting to work on it.
To claim an issue to work on, please leave a comment. If you've claimed the issue and need help, please ping @forem/oss and we will follow up within 3 business days.
For full info on how to contribute, please check out our [contributors guide](https://github.com/forem/forem/blob/master/CONTRIBUTING.md).