Skip to content

Commit

Permalink
ci(frontend): Add git-conventional-commits.yaml configuration file
Browse files Browse the repository at this point in the history
This configuration file defines the convention and rules for git
commits, including the types of commits, release tag pattern, and
links for commits and issues.
  • Loading branch information
maikbasel committed Jan 22, 2024
1 parent 4388509 commit 180f2dc
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions git-conventional-commits.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
---
convention:
commitTypes:
- feat
- fix
- perf
- refactor
- style
- test
- build
- ops
- docs
- chore
- merge
- revert
- ci
commitScopes: []
releaseTagGlobPattern: v[0-9]*.[0-9]*.[0-9]*
changelog:
commitTypes:
- feat
- fix
- perf
- merge
includeInvalidCommits: true
commitIgnoreRegexPattern: "^WIP "
headlines:
feat: Features
fix: Bug Fixes
perf: Performance Improvements
merge: Merges
breakingChange: BREAKING CHANGES

## GitHub
commitUrl: https://github.com/maikbasel/aws-custodian/commit/%commit%
commitRangeUrl: https://github.com/maikbasel/aws-custodian/compare/%from%...%to%?diff=split

# GitHub Issues
issueRegexPattern: "#[0-9]+"
issueUrl: https://github.com/maikbasel/aws-custodian/issues/%issue%

0 comments on commit 180f2dc

Please sign in to comment.