Skip to content

Commit

Permalink
chore: skip releases for chore commits [skip ci] (#483)
Browse files Browse the repository at this point in the history
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_
  • Loading branch information
echeung-amzn authored Jan 16, 2024
1 parent f02e0c0 commit 4beb259
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .projen/tasks.json

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

11 changes: 10 additions & 1 deletion .projenrc.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
import { awscdk, javascript, github, DependencyType } from "projen";
import {
awscdk,
javascript,
github,
DependencyType,
ReleasableCommits,
} from "projen";

const CDK_VERSION = "2.112.0";

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

// To reduce the noisy release frequency we only release features and fixes
releasableCommits: ReleasableCommits.featuresAndFixes(),

// Artifact config: Python
publishToPypi: {
distName: "cdk-monitoring-constructs",
Expand Down

0 comments on commit 4beb259

Please sign in to comment.