Skip to content

Commit

Permalink
Merge pull request #16 from rustadopt/commits-workflow
Browse files Browse the repository at this point in the history
feat(ci): add conventional commits workflow
  • Loading branch information
PThorpe92 authored Jan 1, 2024
2 parents 9e5460c + 9338ae3 commit f231add
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/action-conventional-commits@v1.1.0
# optional, required for private repos
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit f231add

Please sign in to comment.