Skip to content

Commit

Permalink
chore(all-services): rebase
Browse files Browse the repository at this point in the history
MIGRATION CHANGE:
migration-20230905130235- rebase

gh-1954
  • Loading branch information
Karunesh Mani Tripathi authored and yeshamavani committed Mar 5, 2024
1 parent 33dfa77 commit c15ed3a
Show file tree
Hide file tree
Showing 55 changed files with 25,126 additions and 0 deletions.
61 changes: 61 additions & 0 deletions sandbox/user-tenant-service-example/.cz-config.js
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
};
3 changes: 3 additions & 0 deletions sandbox/user-tenant-service-example/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
node_modules
lerna-debug.log
.env
18 changes: 18 additions & 0 deletions sandbox/user-tenant-service-example/.husky/commit-msg
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 -- "$@"
18 changes: 18 additions & 0 deletions sandbox/user-tenant-service-example/.husky/pre-commit
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 sandbox/user-tenant-service-example/.husky/prepare-commit-msg
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 -- "$@"
Loading

0 comments on commit c15ed3a

Please sign in to comment.