You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if: github.event.label.name == 'needs community feedback'
10
+
runs-on: ubuntu-latest
11
+
12
+
permissions:
13
+
issues: write
14
+
15
+
steps:
16
+
- name: Check For Existing Comment
17
+
uses: peter-evans/find-comment@v2
18
+
id: finder
19
+
with:
20
+
issue-number: ${{ github.event.issue.number }}
21
+
comment-author: 'github-actions[bot]'
22
+
body-includes: Thanks for the feature request! We are going to give the community
23
+
24
+
- name: Add Community Feedback Comment
25
+
if: steps.finder.outputs.comment-id == ''
26
+
uses: peter-evans/create-or-update-comment@v2
27
+
with:
28
+
issue-number: ${{ github.event.issue.number }}
29
+
body: |
30
+
Thanks for the feature request! We are going to give the community 60 days from when this issue was created to provide 7 👍 upvotes on the opening comment to gauge general interest in this idea. If there's enough upvotes then we will consider this feature request in our future planning. If there's unfortunately not enough upvotes then we will close this issue.
0 commit comments