-
Notifications
You must be signed in to change notification settings - Fork 5
31 lines (24 loc) · 1.41 KB
/
feature-request-response.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
30
31
name: "Feature Request - Community Note"
on:
issues:
types:
- opened
jobs:
community_note:
name: 'Add Community Note'
if: ${{ contains(github.event.issue.labels.*.name, 'enhancement') }}
runs-on: ubuntu-latest
steps:
- name: 'Add community note to new Issues'
uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043 # v4.0.0
with:
issue-number: ${{ github.event.issue.number }}
body: |
Thanks for the feature request. We evaluate it and update the issue accordingly.
## Community Note
### Voting for Prioritization
* Please vote on this issue by adding a 👍 [reaction](https://blog.github.com/2016-03-10-add-reactions-to-pull-requests-issues-and-comments/) to the original post to help the community and maintainers prioritize this request.
* Please **do not** leave "+1" or other comments that do not add relevant new information or questions, they generate extra noise for issue followers and do not help prioritize the request.
### Volunteering to Work on This Issue
* If you are interested in working on this issue, please leave a comment.
* If this would be your first contribution, please review the [contribution guide](https://github.com/cloudfoundry/terraform-provider-cloudfoundry/blob/main/CONTRIBUTING.md).