The input and output looks all the same, but occurs an error #924
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 Labeled | |
on: | |
issues: | |
types: [labeled] | |
jobs: | |
reply-labeled: | |
runs-on: ubuntu-latest | |
steps: | |
- name: need reproduction | |
if: github.event.label.name == 'need reproduction' | |
uses: actions-cool/issues-helper@v3 | |
with: | |
actions: create-comment | |
token: ${{ secrets.GITHUB_TOKEN }} | |
issue-number: ${{ github.event.issue.number }} | |
body: | | |
Hello @${{ github.event.issue.user.login }}. Please provide a [minimal reproduction](https://stackoverflow.com/help/minimal-reproducible-example) using a GitHub repository or [StackBlitz](https://vitest.new). Issues marked with `need reproduction` will be closed if they have no activity within 3 days. |