fix(deps): bump crate-ci/typos from 1.40.0 to 1.47.2 #105
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 Size Labeler" | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| jobs: | |
| size-label: | |
| name: Label PR by Size | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: 📊 Label PR by 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 exceeds the recommended size of 1000 lines. | |
| Please make sure you are NOT addressing multiple issues with one PR. | |
| Consider splitting this into smaller, more focused pull requests. | |
| files_to_ignore: "package-lock.json *.lock docs/* CHANGELOG.md" |