Bump node-notifier and jest #14
Workflow file for this run
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: PR Size Watcher | |
on: [pull_request] | |
jobs: | |
build: | |
name: Check PR size | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: spring-financial-group/mqube-pr-size-watcher@v2 | |
with: | |
githubToken: ${{ secrets.GITHUB_TOKEN }} # required | |
errorSize: 50 # optional | |
errorMessage: ':no_entry: PR has more than **{allowed} files changed**. Split it into smaller PRs.' # optional | |
warningSize: 40 # optional | |
warningMessage: ':warning: PR has more than **{allowed} files changed**. Consider splitting it into smaller PRs.' # optional | |
excludeTitle: 'PR_SIZE_SKIP' # to skip validation if PR title matches regex |