[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(ci): split command in two

Vladimir Sheremet (Apr 3, 2026, 7:22 PM +0200) 41dbc7ae a3777888

+22 -4
+22 -4
.github/workflows/issue-labeled.yml
··· 22 22 body: | 23 23 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. 24 24 - name: maybe automated 25 - if: github.event.label.name == 'maybe automated' 25 + if: github.event.label.name == 'maybe automated' && github.event_name == 'issues' 26 26 uses: actions-cool/issues-helper@71b62d7da76e59ff7b193904feb6e77d4dbb2777 # v3.7.6 27 27 with: 28 28 actions: create-comment 29 29 token: ${{ secrets.GITHUB_TOKEN }} 30 - issue-number: ${{ github.event.issue.number || github.event.pull_request.number }} 30 + issue-number: ${{ github.event.issue.number }} 31 31 body: | 32 - Hello @${{ github.event.issue.user.login || github.event.pull_request.user.login }}. Your content has been labeled `maybe automated` because it appears to have been fully generated by AI with no human involvement. It will be **closed automatically in 3 days** unless a real person responds. 32 + Hello @${{ github.event.issue.user.login }}. Your issue has been labeled `maybe automated` because it appears to have been fully generated by AI with no human involvement. It will be **closed automatically in 3 days** unless a real person responds. 33 33 34 34 If you're a real person behind this contribution, please: 35 35 - Confirm you've personally reviewed and stand behind its content 36 - - Make sure it follows our [contribution guidelines](https://github.com/vitest-dev/vitest/blob/main/CONTRIBUTING.md) and uses the correct GitHub template ([PR](https://github.com/vitest-dev/vitest/blob/main/.github/PULL_REQUEST_TEMPLATE.md), [issue](https://github.com/vitest-dev/vitest/blob/main/.github/ISSUE_TEMPLATE/bug_report.yml)) 36 + - Make sure it follows our [contribution guidelines](https://github.com/vitest-dev/vitest/blob/main/CONTRIBUTING.md) and uses the correct [GitHub template](https://github.com/vitest-dev/vitest/blob/main/.github/ISSUE_TEMPLATE/bug_report.yml) 37 + - Disclose any AI tools you used (e.g. Claude, Copilot, Codex) 38 + 39 + If you believe this was flagged by mistake, leave a comment. 40 + 41 + *These measures help us reduce maintenance burden and keep the team's work efficient. See our [AI contributions policy](https://github.com/vitest-dev/vitest/blob/main/CONTRIBUTING.md#ai-contributions) for more context.* 42 + - name: maybe automated 43 + if: github.event.label.name == 'maybe automated' && github.event_name == 'pull_request' 44 + uses: actions-cool/issues-helper@71b62d7da76e59ff7b193904feb6e77d4dbb2777 # v3.7.6 45 + with: 46 + actions: create-comment 47 + token: ${{ secrets.GITHUB_TOKEN }} 48 + issue-number: ${{ github.event.pull_request.number }} 49 + body: | 50 + Hello @${{ github.event.pull_request.user.login }}. Your PR has been labeled `maybe automated` because it appears to have been fully generated by AI with no human involvement. It will be **closed automatically in 3 days** unless a real person responds. 51 + 52 + If you're a real person behind this contribution, please: 53 + - Confirm you've personally reviewed and stand behind its content 54 + - Make sure it follows our [contribution guidelines](https://github.com/vitest-dev/vitest/blob/main/CONTRIBUTING.md) and uses the correct [GitHub template](https://github.com/vitest-dev/vitest/blob/main/.github/PULL_REQUEST_TEMPLATE.md) 37 55 - Disclose any AI tools you used (e.g. Claude, Copilot, Codex) 38 56 39 57 If you believe this was flagged by mistake, leave a comment.