Skip to content

Commit

Permalink
chore: self mutation
Browse files Browse the repository at this point in the history
Signed-off-by: github-actions <[email protected]>
  • Loading branch information
github-actions committed Jan 25, 2025
1 parent 0ede5e5 commit 3a8fc89
Showing 1 changed file with 23 additions and 23 deletions.
46 changes: 23 additions & 23 deletions .projenrc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,41 +103,41 @@ const project = new awscdk.AwsCdkConstructLibrary({

// See https://github.com/projen/projen/discussions/4040#discussioncomment-11905628
releasableCommits: ReleasableCommits.ofType([
"feat",
"fix",
"chore",
"refactor",
"perf",
'feat',
'fix',
'chore',
'refactor',
'perf',
]),
githubOptions: {
pullRequestLintOptions: {
semanticTitleOptions: {
types: [
// see commit types here: https://www.conventionalcommits.org/en/v1.0.0/#summary
"feat",
"fix",
"chore",
"refactor",
"perf",
"docs",
"style",
"test",
"build",
"ci",
'feat',
'fix',
'chore',
'refactor',
'perf',
'docs',
'style',
'test',
'build',
'ci',
],
},
},
},
versionrcOptions: {
types: [
{ type: "feat", section: "Features" },
{ type: "fix", section: "Bug Fixes" },
{ type: "chore", section: "Chores" },
{ type: "docs", section: "Docs" },
{ type: "style", hidden: true },
{ type: "refactor", hidden: true },
{ type: "perf", section: "Performance" },
{ type: "test", hidden: true },
{ type: 'feat', section: 'Features' },
{ type: 'fix', section: 'Bug Fixes' },
{ type: 'chore', section: 'Chores' },
{ type: 'docs', section: 'Docs' },
{ type: 'style', hidden: true },
{ type: 'refactor', hidden: true },
{ type: 'perf', section: 'Performance' },
{ type: 'test', hidden: true },
],
},
});
Expand Down

0 comments on commit 3a8fc89

Please sign in to comment.