File tree Expand file tree Collapse file tree 1 file changed +36
-0
lines changed Expand file tree Collapse file tree 1 file changed +36
-0
lines changed Original file line number Diff line number Diff line change
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"
You can’t perform that action at this time.
0 commit comments