fix: update html-minifier to be html-minifier-terser to solve vulnerability #1102
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: Label PR | |
| on: | |
| pull_request: | |
| types: [opened, edited] | |
| jobs: | |
| label-pr: | |
| if: github.event_name == 'pull_request' && github.event.pull_request.head.repo.fork == false | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: erezrokah/[email protected] | |
| if: startsWith(github.event.pull_request.title, 'fix') | |
| with: | |
| token: '${{ secrets.GITHUB_TOKEN }}' | |
| label: 'type: bug' | |
| - uses: erezrokah/[email protected] | |
| if: startsWith(github.event.pull_request.title, 'chore') || startsWith(github.event.pull_request.title, 'ci:') | |
| with: | |
| token: '${{ secrets.GITHUB_TOKEN }}' | |
| label: 'type: chore' | |
| - uses: erezrokah/[email protected] | |
| if: startsWith(github.event.pull_request.title, 'feat') | |
| with: | |
| token: '${{ secrets.GITHUB_TOKEN }}' | |
| label: 'type: feature' | |
| - uses: erezrokah/[email protected] | |
| if: startsWith(github.event.pull_request.title, 'security') | |
| with: | |
| token: '${{ secrets.GITHUB_TOKEN }}' | |
| label: 'type: security' |