We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ea2f58 commit 582c011Copy full SHA for 582c011
.circleci/config.yml
@@ -36,10 +36,7 @@ jobs:
36
- run: npm test
37
- run: npm run build
38
- deploy_gh_pages
39
- - run:
40
- command: npx semantic-release
41
- environment:
42
- HUSKY: 0 # disable Husky hooks so commitlint doesn't block semantic-release
+ - run: npx semantic-release
43
update_i18n:
44
executor: node/default # defaults to LTS
45
steps:
commitlint.config.js
@@ -1,3 +1,4 @@
1
module.exports = {
2
- extends: ['@commitlint/config-conventional']
+ extends: ['@commitlint/config-conventional'],
3
+ ignores: [message => message.startsWith('chore(release):')]
4
};
0 commit comments