github.com/matrixorigin/matrixone@v0.7.0/.github/workflows/labeler.yml (about) 1 name: labeler 2 on: 3 pull_request_target: 4 types: [ opened, synchronize, reopened ] 5 branches: main 6 7 concurrency: 8 group: ${{ github.event.pull_request.head.repo.full_name}}/${{ github.event.pull_request.head.ref }}/${{ github.workflow }} 9 cancel-in-progress: true 10 11 jobs: 12 pr-size-label: 13 runs-on: ubuntu-latest 14 steps: 15 - name: size-label 16 uses: "guguducken/label-size-action@v0.0.2" 17 with: 18 size_token: ${{ secrets.TOKEN_ACTION }} 19 ignore: ".md,.pb.go" 20 sizes: > 21 { 22 "XS":0, 23 "S":10, 24 "M":100, 25 "L":500, 26 "XL":1000, 27 "XXL":2000 28 } 29