Bump the Action minor version number on new CodeQL minor version series #656
Workflow file for this run
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: Label PR with size | |
| on: | |
| pull_request: | |
| types: | |
| - opened | |
| - synchronize | |
| - reopened | |
| - edited | |
| - ready_for_review | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| jobs: | |
| sizeup: | |
| name: Label PR with size | |
| runs-on: ubuntu-slim | |
| steps: | |
| - name: Run sizeup | |
| uses: lerebear/sizeup-action@b7beb3dd273e36039e16e48e7bc690c189e61951 # 0.8.12 | |
| with: | |
| token: "${{ secrets.GITHUB_TOKEN }}" | |
| configuration-file-path: ".github/sizeup.yml" |