Skip to content

Commit

Permalink
chore: allow to release on chore (#394)
Browse files Browse the repository at this point in the history
This change is just to allow for a release to clean up the logs.
  • Loading branch information
TheRealAmazonKendra authored Oct 12, 2023
1 parent d06a254 commit 3847718
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .projen/tasks.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions .projenrc.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { CdklabsTypeScriptProject } from 'cdklabs-projen-project-types';
import { ReleasableCommits } from 'projen';

const project = new CdklabsTypeScriptProject({
projenrcTs: true,
Expand Down Expand Up @@ -29,6 +30,8 @@ const project = new CdklabsTypeScriptProject({
minNodeVersion: '16.0.0',
enablePRAutoMerge: true,
setNodeEngineVersion: false,
// Adding temporarily to release the last change I made
releasableCommits: ReleasableCommits.everyCommit(),
});

project.synth();

0 comments on commit 3847718

Please sign in to comment.