[READ-ONLY] Mirror of https://github.com/vitest-dev/vitest. Next generation testing framework powered by Vite. vitest.dev
test testing-tools vite
12

Configure Feed

Select the types of activity you want to include in your feed.

chore: rename needs reproduction label (#5260)

authored by

patak and committed by
GitHub
(Feb 23, 2024, 10:36 AM +0100) 558bb885 bca7705a

+6 -6
+1 -1
.github/ISSUE_TEMPLATE/bug_report.yml
··· 18 18 id: reproduction 19 19 attributes: 20 20 label: Reproduction 21 - description: Please provide a link to [StackBlitz](https://stackblitz.com/fork/github/vitest-dev/vitest/tree/main/examples/basic?initialPath=__vitest__/) (you can also use [examples](https://github.com/vitest-dev/vitest/tree/main/examples)) or a github repo that can reproduce the problem you ran into. A [minimal reproduction](https://stackoverflow.com/help/minimal-reproducible-example) is required unless you are absolutely sure that the issue is obvious and the provided information is enough to understand the problem. If a report is vague (e.g. just a generic error message) and has no reproduction, it will receive a "need reproduction" label. If no reproduction is provided after 3 days, it will be auto-closed. 21 + description: Please provide a link to [StackBlitz](https://stackblitz.com/fork/github/vitest-dev/vitest/tree/main/examples/basic?initialPath=__vitest__/) (you can also use [examples](https://github.com/vitest-dev/vitest/tree/main/examples)) or a github repo that can reproduce the problem you ran into. A [minimal reproduction](https://stackoverflow.com/help/minimal-reproducible-example) is required unless you are absolutely sure that the issue is obvious and the provided information is enough to understand the problem. If a report is vague (e.g. just a generic error message) and has no reproduction, it will receive a "needs reproduction" label. If no reproduction is provided after 3 days, it will be auto-closed. 22 22 placeholder: Reproduction 23 23 validations: 24 24 required: true
+2 -2
.github/workflows/issue-close-require.yml
··· 8 8 close-issues: 9 9 runs-on: ubuntu-latest 10 10 steps: 11 - - name: need reproduction 11 + - name: needs reproduction 12 12 uses: actions-cool/issues-helper@v3 13 13 with: 14 14 actions: close-issues 15 15 token: ${{ secrets.GITHUB_TOKEN }} 16 - labels: need reproduction 16 + labels: needs reproduction 17 17 inactive-day: 3
+3 -3
.github/workflows/issue-labeled.yml
··· 8 8 reply-labeled: 9 9 runs-on: ubuntu-latest 10 10 steps: 11 - - name: need reproduction 12 - if: github.event.label.name == 'need reproduction' 11 + - name: needs reproduction 12 + if: github.event.label.name == 'needs reproduction' 13 13 uses: actions-cool/issues-helper@v3 14 14 with: 15 15 actions: create-comment 16 16 token: ${{ secrets.GITHUB_TOKEN }} 17 17 issue-number: ${{ github.event.issue.number }} 18 18 body: | 19 - 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) (you can also use [examples](https://github.com/vitest-dev/vitest/tree/main/examples)). Issues marked with `need reproduction` will be closed if they have no activity within 3 days. 19 + 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) (you can also use [examples](https://github.com/vitest-dev/vitest/tree/main/examples)). Issues marked with `needs reproduction` will be closed if they have no activity within 3 days.