Svelte re-build #273
This file contains 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: Pull Requests | |
on: | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
jobs: | |
size: | |
name: Check PR size | |
runs-on: ubuntu-latest | |
steps: | |
- uses: ookami-kb/gh-pr-size-watcher@v1 | |
with: | |
githubToken: ${{ secrets.GITHUB_TOKEN }} | |
errorSize: 500 | |
errorMessage: ':no_entry: PR has more than **{allowed} additions**. Split it into smaller PRs.' | |
warningSize: 300 | |
warningMessage: ':warning: PR has more than **{allowed} additions**. Consider splitting it into smaller PRs.' | |
excludePaths: | | |
pnpm-lock.yaml | |
**/*.spec.ts | |
**/*.spec.tsx |