Skip to content

Commit 4beb259

Browse files
author
Eugene Cheung
authored
chore: skip releases for chore commits [skip ci] (#483)
Related to projen/projen#3164 Most of our releases are triggered by dependency updates, which are mostly just `jsii` and `projen` updates which oft-times have no tangible benefit to consumers and is purely just noise. --- _By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license_
1 parent f02e0c0 commit 4beb259

File tree

2 files changed

+14
-3
lines changed

2 files changed

+14
-3
lines changed

.projen/tasks.json

Lines changed: 4 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.projenrc.ts

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
import { awscdk, javascript, github, DependencyType } from "projen";
1+
import {
2+
awscdk,
3+
javascript,
4+
github,
5+
DependencyType,
6+
ReleasableCommits,
7+
} from "projen";
28

39
const CDK_VERSION = "2.112.0";
410

@@ -19,6 +25,9 @@ const project = new awscdk.AwsCdkConstructLibrary({
1925
srcdir: "lib",
2026
testdir: "test",
2127

28+
// To reduce the noisy release frequency we only release features and fixes
29+
releasableCommits: ReleasableCommits.featuresAndFixes(),
30+
2231
// Artifact config: Python
2332
publishToPypi: {
2433
distName: "cdk-monitoring-constructs",

0 commit comments

Comments
 (0)