Non-node builtin modules get prefixed with node #4805
  
    
      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: Issue Labeled | |
| on: | |
| issues: | |
| types: [labeled] | |
| jobs: | |
| reply-labeled: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| issues: write # for actions-cool/issues-helper to update issues | |
| steps: | |
| - name: needs reproduction | |
| if: github.event.label.name == 'needs reproduction' | |
| uses: actions-cool/issues-helper@45d75b6cf72bf4f254be6230cb887ad002702491 # v3.6.3 | |
| 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) (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. |