Skip to content

Commit

Permalink
feature(ci): add commits workflow that checks for conventional commits
Browse files Browse the repository at this point in the history
Signed-off-by: Sandro-Alessio Gierens <[email protected]>
  • Loading branch information
gierens committed Oct 25, 2023
1 parent 739d16c commit 50041f7
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/commits.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: commits

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
build:
name: conventional
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: webiny/[email protected]
# optional, required for private repos
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 50041f7

Please sign in to comment.