feat!: disable autoExternal in bundleless mode and only redirect request not in node_modules
#869
Workflow file for this run
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: PR Labeler | |
| on: | |
| pull_request_target: | |
| types: | |
| - opened | |
| - edited | |
| permissions: | |
| # Permits `github/issue-labeler` to add a label to a pull request | |
| pull-requests: write | |
| contents: read | |
| jobs: | |
| change-labeling: | |
| name: Labeling for changes | |
| runs-on: ubuntu-latest | |
| if: github.repository == 'web-infra-dev/rslib' | |
| steps: | |
| - uses: github/[email protected] | |
| with: | |
| repo-token: '${{ secrets.GITHUB_TOKEN }}' | |
| configuration-path: .github/pr-labeler.yml | |
| enable-versioned-regex: 0 | |
| include-title: 1 | |
| sync-labels: 1 |