Skip to content

Commit

Permalink
Auto add community feedback comment (#20956)
Browse files Browse the repository at this point in the history
Closes #20943
  • Loading branch information
karthiknadig authored Apr 3, 2023
1 parent 5528e0e commit 6fec579
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/community-feedback-auto-comment.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Community Feedback Auto Comment

on:
issues:
types:
- labeled
jobs:
add-comment:
if: github.event.label.name == 'needs community feedback'
runs-on: ubuntu-latest

permissions:
issues: write

steps:
- name: Check For Existing Comment
uses: peter-evans/find-comment@v2
id: finder
with:
issue-number: ${{ github.event.issue.number }}
comment-author: 'github-actions[bot]'
body-includes: Thanks for the feature request! We are going to give the community

- name: Add Community Feedback Comment
if: steps.finder.outputs.comment-id == ''
uses: peter-evans/create-or-update-comment@v2
with:
issue-number: ${{ github.event.issue.number }}
body: |
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 comments on commit 6fec579

Please sign in to comment.