Skip to content

Commit

Permalink
Merge pull request #31 from eclipse-kura/ci/semantic_pr_workflow
Browse files Browse the repository at this point in the history
ci: add Validate PR title workflow
  • Loading branch information
MMaiero authored Dec 13, 2024
2 parents f0b2c09 + e137d34 commit fdef52b
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/semantic-pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: "Lint PR"

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

jobs:
main:
name: Validate PR title
runs-on: ubuntu-latest
steps:
- uses: amannn/action-semantic-pull-request@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
types: |
fix
feat
docs
refactor
test
style
chore
build
ci
revert
perf
deprecate
requireScope: false

0 comments on commit fdef52b

Please sign in to comment.