mirror of
https://github.com/github/codeql-action.git
synced 2025-12-30 11:10:22 +08:00
27 lines
515 B
YAML
27 lines
515 B
YAML
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"
|