-
Notifications
You must be signed in to change notification settings - Fork 13
36 lines (28 loc) · 1.56 KB
/
feature-request-response.yml
File metadata and controls
36 lines (28 loc) · 1.56 KB
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
32
33
34
35
36
name: "Feature Request - Community Note"
on:
issues:
types:
- opened
# Security: restrict GITHUB_TOKEN to least privilege.
# See: https://www.upwind.io/feed/hackerbot-claw-github-actions-pull-request-rce
permissions:
issues: write
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@e8674b075228eee787fea43ef493e45ece1004c9 # v5.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).