Can this plugin be used in a browser? #129
This file contains 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: Issue Reply | |
on: | |
issues: | |
types: [labeled] | |
jobs: | |
reply-helper: | |
runs-on: ubuntu-latest | |
steps: | |
- name: help wanted | |
if: github.event.label.name == 'help wanted' | |
uses: actions-cool/issues-helper@v3 | |
with: | |
actions: 'create-comment' | |
issue-number: ${{ github.event.issue.number }} | |
body: | | |
Hello @${{ github.event.issue.user.login }}. We totally like your proposal/feedback, welcome to send us a Pull Request for it. Please be sure to fill in the default template in the Pull Request, provide changelog/documentation/test cases if needed and make sure CI passed, we will review it soon. We appreciate your effort in advance and looking forward to your contribution! | |
- name: need reproduction | |
if: github.event.label.name == 'need reproduction' | |
uses: actions-cool/issues-helper@v3 | |
with: | |
actions: 'create-comment' | |
issue-number: ${{ github.event.issue.number }} | |
body: | | |
Hello @${{ github.event.issue.user.login }}. In order to facilitate location and troubleshooting, we need you to provide a realistic example. Please forking these link [codesandbox](https://codesandbox.io/s/magical-vaughan-byzhk?file=/src/App.jsx) or provide your GitHub repository. |