Skip to content

Commit

Permalink
chore(ci): Ensure PR titles are in semantic format (#7346)
Browse files Browse the repository at this point in the history
  • Loading branch information
sojan-official committed Jun 19, 2023
1 parent 138630b commit 5c5381c
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/lint_pr.yml
@@ -0,0 +1,23 @@
# ref: https://github.com/amannn/action-semantic-pull-request
# ensure PR title is in semantic format

name: "Lint PR"

on:
pull_request_target:
types:
- opened
- edited
- synchronize

permissions:
pull-requests: read

jobs:
main:
name: Validate PR title
runs-on: ubuntu-latest
steps:
- uses: amannn/action-semantic-pull-request@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 5c5381c

Please sign in to comment.