Skip to content

Commit d0809ae

Browse files
chore(projen): update configuguration to release only feat and fix (#20)
To avoid a lot of releases in girhub and npm, we skip all scopes except feat and fix
1 parent 4d28564 commit d0809ae

File tree

4 files changed

+50
-4
lines changed

4 files changed

+50
-4
lines changed

.github/FUNDING.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
github: [JumpToTheCloud] # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
44
patreon: # Replace with a single Patreon username
5-
open_collective: jumptothecloud # Replace with a single Open Collective username
5+
open_collective: # Replace with a single Open Collective username
66
ko_fi: # Replace with a single Ko-fi username
77
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
88
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry

.github/workflows/release.yml

+42
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.projen/tasks.json

+4-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.projenrc.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { awscdk } from 'projen';
1+
import { ReleasableCommits, awscdk } from 'projen';
22
import { JobPermission } from 'projen/lib/github/workflows-model';
33
import { TrailingComma } from 'projen/lib/javascript';
44

@@ -32,6 +32,8 @@ const project = new awscdk.AwsCdkConstructLibrary({
3232
},
3333
},
3434
github: true,
35+
releasableCommits: ReleasableCommits.featuresAndFixes(),
36+
releaseFailureIssue: true,
3537
deps: [] /* Runtime dependencies of this module. */,
3638
peerDeps: [] /* Peer dependencies of this module. */,
3739
description:

0 commit comments

Comments
 (0)