github.com/twilio/twilio-go@v1.20.1/.github/workflows/pr-lint.yml (about)

     1  name: Lint PR
     2  on:
     3    pull_request_target:
     4      types: [ opened, edited, synchronize, reopened ]
     5  
     6  jobs:
     7    validate:
     8      name: Validate title
     9      runs-on: ubuntu-latest
    10      steps:
    11        - uses: amannn/action-semantic-pull-request@v5
    12          with:
    13            types: |
    14              chore
    15              docs
    16              fix
    17              feat
    18              misc
    19              test
    20          env:
    21            GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}