Skip to content

Commit

Permalink
feat(CI): add Lint PR workflow (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
thiskevinwang committed Oct 5, 2023
1 parent d9e7e00 commit 09a250a
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/conventional-pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: "Lint PR"

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

jobs:
lint-pr:
name: Validate PR title
runs-on: ubuntu-latest
steps:
- name: Lint PR
uses: amannn/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 09a250a

Please sign in to comment.