-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MIGRATION CHANGE: migration-20230905130235- rebase gh-1954
- Loading branch information
1 parent
33dfa77
commit c15ed3a
Showing
55 changed files
with
25,126 additions
and
0 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,61 @@ | ||
module.exports = { | ||
types: [ | ||
{value: 'feat', name: 'feat: A new feature'}, | ||
{value: 'fix', name: 'fix: A bug fix'}, | ||
{value: 'docs', name: 'docs: Documentation only changes'}, | ||
{ | ||
value: 'style', | ||
name: 'style: Changes that do not affect the meaning of the code\n (white-space, formatting, missing semi-colons, etc)', | ||
}, | ||
{ | ||
value: 'refactor', | ||
name: 'refactor: A code change that neither fixes a bug nor adds a feature', | ||
}, | ||
{ | ||
value: 'perf', | ||
name: 'perf: A code change that improves performance', | ||
}, | ||
{value: 'test', name: 'test: Adding missing tests'}, | ||
{ | ||
value: 'chore', | ||
name: 'chore: Changes to the build process or auxiliary tools\n and libraries such as documentation generation', | ||
}, | ||
{value: 'revert', name: 'revert: Revert to a commit'}, | ||
{value: 'WIP', name: 'WIP: Work in progress'}, | ||
], | ||
|
||
scopes: [ | ||
{name: 'user-tenant-service-service'}, | ||
{name: 'ci-cd'}, | ||
{name: 'deps'}, | ||
{name: 'migrations'}, | ||
], | ||
|
||
appendBranchNameToCommitMessage: false, | ||
allowTicketNumber: false, | ||
isTicketNumberRequired: false, | ||
ticketNumberPrefix: 'Fixes - ', | ||
|
||
// override the messages, defaults are as follows | ||
messages: { | ||
type: "Select the type of change that you're committing:", | ||
scope: 'Denote the SCOPE of this change:', | ||
// used if allowCustomScopes is true | ||
customScope: 'Denote the SCOPE of this change:', | ||
subject: 'Write a SHORT, IMPERATIVE tense description of the change:\n', | ||
body: 'Provide a LONGER description of the change (optional). Use "|" to break new line:\n', | ||
breaking: 'List any BREAKING CHANGES (optional):\n', | ||
footer: | ||
'List any ISSUES CLOSED by this change (optional). E.g.: -31, -34:\n', | ||
confirmCommit: 'Are you sure you want to proceed with the commit above?', | ||
}, | ||
|
||
allowCustomScopes: false, | ||
allowBreakingChanges: ['feat', 'fix'], | ||
|
||
// limit subject length | ||
subjectLimit: 100, | ||
breaklineChar: '|', // It is supported for fields body and footer. | ||
footerPrefix: '', | ||
askForBreakingChangeFirst: true, // default is false | ||
}; |
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,3 @@ | ||
node_modules | ||
lerna-debug.log | ||
.env |
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,18 @@ | ||
#!/bin/sh | ||
. "$(dirname "$0")/_/husky.sh" | ||
|
||
npx --no-install commitlint --edit $1 | ||
|
||
# Section for git-secrets | ||
if ! command -v git-secrets &> /dev/null 2>&1 | ||
then | ||
echo "git-secrets is not installed. Please run 'brew install git-secrets' or visit https://github.com/awslabs/git-secrets#installing-git-secrets" | ||
exit 1 | ||
fi | ||
|
||
# Initialise git-secrets configuration | ||
git-secrets --register-aws > /dev/null | ||
|
||
echo "Running git-secrets..." | ||
# Scans the commit message. | ||
git-secrets --commit_msg_hook -- "$@" |
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,18 @@ | ||
#!/bin/sh | ||
. "$(dirname "$0")/_/husky.sh" | ||
|
||
# Section for git-secrets | ||
if ! command -v git-secrets &> /dev/null 2>&1 | ||
then | ||
echo "git-secrets is not installed. Please run 'brew install git-secrets' or visit https://github.com/awslabs/git-secrets#installing-git-secrets" | ||
exit 1 | ||
fi | ||
|
||
# Initialise git-secrets configuration | ||
git-secrets --register-aws > /dev/null | ||
|
||
echo "Running git-secrets..." | ||
# Scans all files that are about to be committed. | ||
git-secrets --pre_commit_hook -- "$@" | ||
|
||
npm test |
18 changes: 18 additions & 0 deletions
18
sandbox/user-tenant-service-example/.husky/prepare-commit-msg
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,18 @@ | ||
#!/bin/sh | ||
. "$(dirname "$0")/_/husky.sh" | ||
|
||
exec < /dev/tty && npx cz --hook || true | ||
|
||
# Section for git-secrets | ||
if ! command -v git-secrets &> /dev/null 2>&1 | ||
then | ||
echo "git-secrets is not installed. Please run 'brew install git-secrets' or visit https://github.com/awslabs/git-secrets#installing-git-secrets" | ||
exit 1 | ||
fi | ||
|
||
# Initialise git-secrets configuration | ||
git-secrets --register-aws > /dev/null | ||
|
||
echo "Running git-secrets..." | ||
# Determines if merging in a commit will introduce tainted history. | ||
git-secrets --prepare_commit_msg_hook -- "$@" |
Oops, something went wrong.