From 7a691e4c44000bae61468eeb951446044cfb92d9 Mon Sep 17 00:00:00 2001 From: Kynan Ware <47394200+BagToad@users.noreply.github.com> Date: Mon, 14 Jul 2025 15:14:48 -0600 Subject: [PATCH 1/2] feat(comment): add automated feature request response --- .github/workflows/feature-request-comment.yml | 36 +++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 .github/workflows/feature-request-comment.yml diff --git a/.github/workflows/feature-request-comment.yml b/.github/workflows/feature-request-comment.yml new file mode 100644 index 000000000..48d4ea9e2 --- /dev/null +++ b/.github/workflows/feature-request-comment.yml @@ -0,0 +1,36 @@ +name: Add feature-request comment +on: + issues: + types: + - labeled + +permissions: + issues: write + +jobs: + add-comment-to-feature-request-issues: + if: github.event.label.name == 'feature-request' + runs-on: ubuntu-latest + env: + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} + GH_REPO: ${{ github.repository }} + NUMBER: ${{ github.event.issue.number }} + BODY: > + Thank you for your issue! We have categorized it as a feature request, + and it has been added to our backlog. In doing so, **we are not + committing to implementing this feature at this time**, but, we will + consider it for future releases based on community feedback and our own + product roadmap. + + + Unless you see the + https://github.com/cli/cli/labels/help%20wanted label, we are + not currently looking for external contributions for this feature. + + + **If you come across this issue and would like to see it implemented, + please add a thumbs up!** This will help us prioritize the feature. + Please only comment if you have additional information or viewpoints to + contribute. + steps: + - run: gh issue comment "$NUMBER" --body "$BODY" From e35a9748926d4f2b45a4393818d254ad7b2bb409 Mon Sep 17 00:00:00 2001 From: Kynan Ware <47394200+BagToad@users.noreply.github.com> Date: Thu, 17 Jul 2025 12:11:30 -0600 Subject: [PATCH 2/2] Update .github/workflows/feature-request-comment.yml --- .github/workflows/feature-request-comment.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/feature-request-comment.yml b/.github/workflows/feature-request-comment.yml index 48d4ea9e2..8426d7af2 100644 --- a/.github/workflows/feature-request-comment.yml +++ b/.github/workflows/feature-request-comment.yml @@ -9,7 +9,7 @@ permissions: jobs: add-comment-to-feature-request-issues: - if: github.event.label.name == 'feature-request' + if: github.event.label.name == 'enhancement' runs-on: ubuntu-latest env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}