deps(deps): bump the production-dependencies group across 1 directory with 2 updates #174
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
| # Pull Request Checks | |
| # Additional validation and automation for PRs | |
| name: PR Checks | |
| on: | |
| pull_request: | |
| types: [opened, edited, synchronize, reopened] | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| jobs: | |
| # =========================================================================== | |
| # PR Size Check | |
| # =========================================================================== | |
| size-check: | |
| name: PR Size Check | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 5 | |
| steps: | |
| - name: Check PR size | |
| uses: codelytv/pr-size-labeler@v1 | |
| with: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| xs_label: 'size/XS' | |
| xs_max_size: 10 | |
| s_label: 'size/S' | |
| s_max_size: 100 | |
| m_label: 'size/M' | |
| m_max_size: 500 | |
| l_label: 'size/L' | |
| l_max_size: 1000 | |
| xl_label: 'size/XL' | |
| fail_if_xl: false | |
| message_if_xl: | | |
| ⚠️ This PR is quite large. Consider breaking it into smaller, more focused PRs for easier review. | |
| files_to_ignore: | | |
| package-lock.json | |
| *.lock | |
| *.snap | |
| # =========================================================================== | |
| # Auto-label PRs | |
| # =========================================================================== | |
| auto-label: | |
| name: Auto Label | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 5 | |
| steps: | |
| - name: Label PR based on files changed | |
| uses: actions/labeler@v6 | |
| with: | |
| repo-token: ${{ secrets.GITHUB_TOKEN }} | |
| configuration-path: .github/labeler.yml | |
| sync-labels: true |