-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: use cache for docker, update release logic
- Loading branch information
Showing
8 changed files
with
330 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
module.exports = { | ||
types: [ | ||
{ value: 'feat', name: 'feat: A new feature' }, | ||
{ value: 'fix', name: 'fix: A bug fix' }, | ||
{ value: 'ui', name: 'ui: Changes related to the UI' }, | ||
{ | ||
value: 'perf', | ||
name: 'perf: A code change that improves performance', | ||
}, | ||
{ value: 'docs', name: 'docs: Documentation only changes' }, | ||
{ value: 'revert', name: 'revert: Revert a previous commit' }, | ||
{ | ||
value: 'chore', | ||
name: 'chore: Changes to auxiliary tools such as libraries and dependencies', | ||
}, | ||
{ | ||
value: 'refactor', | ||
name: 'refactor: A code change that neither fixes a bug nor adds a feature', | ||
}, | ||
{ | ||
value: 'build', | ||
name: 'build: Changes that affect the build system or external dependencies\n (example scopes: docker, pnpm)', | ||
}, | ||
{ | ||
value: 'style', | ||
name: 'style: Changes that do not affect the meaning of the code\n (white-space, formatting, missing semi-colons, etc)', | ||
}, | ||
{ | ||
value: 'ci', | ||
name: 'ci: Changes to our CI configuration files and scripts\n (example scope: gh-actions)', | ||
}, | ||
{ | ||
value: 'test', | ||
name: 'test: Adding missing tests or correcting existing tests', | ||
}, | ||
], | ||
scopes: [{ name: 'rewind' }, { name: 'dashboard' }, { name: 'config' }], | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,23 @@ | ||
module.exports = { extends: ['@commitlint/config-conventional'] } | ||
module.exports = { | ||
extends: ['@commitlint/config-conventional'], | ||
rules: { | ||
'type-enum': [ | ||
2, | ||
'always', | ||
[ | ||
'feat', | ||
'fix', | ||
'ui', | ||
'perf', | ||
'docs', | ||
'revert', | ||
'chore', | ||
'refactor', | ||
'build', | ||
'style', | ||
'ci', | ||
'test', | ||
], | ||
], | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.