Skip to content

Commit

Permalink
chore(github-actions): added commit message validation on PR
Browse files Browse the repository at this point in the history
  • Loading branch information
stoprocent committed May 29, 2024
1 parent c9c0d67 commit 16a0f32
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/commit-message-validator.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: "Commit message validation on pull request"

on: pull_request

jobs:
commit-message-validation:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v2

- name: Commit message validation
uses: lumapps/commit-message-validator@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 16a0f32

Please sign in to comment.