Skip to content

Commit

Permalink
Merge pull request #509 from SimonRichardson/conventional-commits
Browse files Browse the repository at this point in the history
feat: conventional commits static analysis
  • Loading branch information
hmlanigan authored Jul 3, 2024
2 parents cd4ebd4 + 4c94967 commit a14a1ed
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/static-analysis.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: "Static Analysis"
on:
push:
branches: [main]
pull_request:
types: [opened, synchronize, reopened, ready_for_review]

permissions:
contents: read

jobs:
conventional-commits:
name: Check conventional commits
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: wagoid/commitlint-github-action@v6

0 comments on commit a14a1ed

Please sign in to comment.