37895-41336 bcbf7-8f76e 1671f-3181f 97219-1ebb5 15d30-b955c 2f4bd-31287 7694c-244a7 9db11-f5375 2b394-f3b72 d31e0-83507 ab254-9b7f8 60dfb-b2ab2 1f379-ae20b cbf82-bde36 46783-5d5a6 3977d-c0b9b #822
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Add enhancement comment | |
| on: | |
| issues: | |
| types: | |
| - labeled | |
| permissions: | |
| issues: write | |
| jobs: | |
| add-comment-to-enhancement-issues: | |
| if: github.event.label.name == 'enhancement' | |
| 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 an enhancement, | |
| 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. | |
| **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" |