| 1234567891011121314151617 |
- name: Label PRs based on size
- on: [pull_request, workflow_dispatch]
- jobs:
- add_pr_size_label:
- runs-on: ubuntu-latest
- name: Check PR size
- permissions:
- contents: write
- pull-requests: write
- steps:
- - name: Label and comment PR
- uses: boschresearch/pr-size-labeler@v5
- # Uncomment these lines if you want to use your own custom configuration
- # with:
- # bucketConfigFile: "<PATH_TO_YOUR_BUCKET_CONFIG>"
|