Skip to content

Commit

Permalink
Merge pull request #1 from awendt/commitlint
Browse files Browse the repository at this point in the history
Set up cocogitto and commitlint
  • Loading branch information
awendt authored Nov 9, 2024
2 parents 58eebc8 + a15abe5 commit c421d93
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/commitlint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: Lint commit messages
on: [pull_request]

permissions:
contents: read
pull-requests: read

jobs:
commitlint:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: wagoid/commitlint-github-action@v6
24 changes: 24 additions & 0 deletions cog.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
from_latest_tag = false
ignore_merge_commits = false
disable_changelog = false
disable_bump_commit = false
generate_mono_repository_global_tag = true
branch_whitelist = []
skip_ci = "[skip ci]"
skip_untracked = false
pre_bump_hooks = []
post_bump_hooks = []
pre_package_bump_hooks = []
post_package_bump_hooks = []

[git_hooks]

[commit_types]

[changelog]
path = "CHANGELOG.md"
authors = []

[bump_profiles]

[packages]

0 comments on commit c421d93

Please sign in to comment.