mirror of
https://github.com/dkershner6/post-api-call-action.git
synced 2024-11-15 21:03:50 +08:00
30 lines
660 B
YAML
30 lines
660 B
YAML
|
# ~~ Generated by projen. To modify, edit .projenrc.ts and run "npx projen".
|
||
|
|
||
|
name: pull-request-lint
|
||
|
on:
|
||
|
pull_request_target:
|
||
|
types:
|
||
|
- labeled
|
||
|
- opened
|
||
|
- synchronize
|
||
|
- reopened
|
||
|
- ready_for_review
|
||
|
- edited
|
||
|
jobs:
|
||
|
validate:
|
||
|
name: Validate PR title
|
||
|
runs-on: ubuntu-latest
|
||
|
permissions:
|
||
|
pull-requests: write
|
||
|
steps:
|
||
|
- uses: amannn/action-semantic-pull-request@v5.0.2
|
||
|
env:
|
||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||
|
with:
|
||
|
types: |-
|
||
|
feat
|
||
|
fix
|
||
|
chore
|
||
|
requireScope: false
|
||
|
githubBaseUrl: ${{ github.api_url }}
|