这是indexloc提供的服务,不要输入任何密码
Skip to content

Commit 08303d9

Browse files
authored
Merge pull request #11299 from cli/kw/feature-request-comment
Add automated feature request response workflow
2 parents 5ea34d8 + e35a974 commit 08303d9

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: Add feature-request comment
2+
on:
3+
issues:
4+
types:
5+
- labeled
6+
7+
permissions:
8+
issues: write
9+
10+
jobs:
11+
add-comment-to-feature-request-issues:
12+
if: github.event.label.name == 'enhancement'
13+
runs-on: ubuntu-latest
14+
env:
15+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
16+
GH_REPO: ${{ github.repository }}
17+
NUMBER: ${{ github.event.issue.number }}
18+
BODY: >
19+
Thank you for your issue! We have categorized it as a feature request,
20+
and it has been added to our backlog. In doing so, **we are not
21+
committing to implementing this feature at this time**, but, we will
22+
consider it for future releases based on community feedback and our own
23+
product roadmap.
24+
25+
26+
Unless you see the
27+
https://github.com/cli/cli/labels/help%20wanted label, we are
28+
not currently looking for external contributions for this feature.
29+
30+
31+
**If you come across this issue and would like to see it implemented,
32+
please add a thumbs up!** This will help us prioritize the feature.
33+
Please only comment if you have additional information or viewpoints to
34+
contribute.
35+
steps:
36+
- run: gh issue comment "$NUMBER" --body "$BODY"

0 commit comments

Comments
 (0)