From 8b882dd5123889e2e4c8afbd23dd2106cb5d1056 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alberto=20P=C3=A9rez=20de=20Rada=20Fiol?= Date: Wed, 29 Jul 2020 14:17:47 +0200 Subject: [PATCH] Add workflow automating maintainers' comment on new issues (#9488) * Add workflow automating maintainers' comment on new issues * Add steps * Convert steps to a list --- .github/workflows/issue.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/issue.yml diff --git a/.github/workflows/issue.yml b/.github/workflows/issue.yml new file mode 100644 index 000000000..427d86002 --- /dev/null +++ b/.github/workflows/issue.yml @@ -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).