Browse Source

ci: use GitHub Action to validate semantic commits

tags/v0.10.11
Jérôme Deuchnord 1 year ago
committed by Jérôme Deuchnord
parent
commit
83d9cf70ac
1 changed files with 17 additions and 0 deletions
  1. +17
    -0
      .github/workflows/semantic-pr.yml

+ 17
- 0
.github/workflows/semantic-pr.yml View File

@@ -0,0 +1,17 @@
name: "Semantic Pull Request"

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

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

Loading…
Cancel
Save