Skip to content

Commit

Permalink
chore: only release on functional updates (v26) (#344)
Browse files Browse the repository at this point in the history
Fixes #
  • Loading branch information
rix0rrr authored Jul 4, 2023
1 parent ae4eaf3 commit bed1dc7
Show file tree
Hide file tree
Showing 11 changed files with 915 additions and 834 deletions.
1 change: 1 addition & 0 deletions .gitattributes

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

10 changes: 6 additions & 4 deletions .github/workflows/build.yml

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

4 changes: 2 additions & 2 deletions .github/workflows/upgrade-kubectl-v26-main.yml

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

1 change: 1 addition & 0 deletions .gitignore

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

5 changes: 5 additions & 0 deletions .projen/deps.json

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

1 change: 1 addition & 0 deletions .projen/files.json

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

18 changes: 10 additions & 8 deletions .projen/tasks.json

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

5 changes: 4 additions & 1 deletion .projenrc.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { awscdk, Gitpod, DevEnvironmentDockerImage } from 'projen';
import { awscdk, Gitpod, DevEnvironmentDockerImage, ReleasableCommits } from 'projen';
import { NpmAccess } from 'projen/lib/javascript';
import { WorkflowNoDockerPatch } from './projenrc/workflow-no-docker-patch';

Expand All @@ -25,6 +25,9 @@ const project = new awscdk.AwsCdkConstructLibrary({
npmAccess: NpmAccess.PUBLIC,
releaseTagPrefix: `kubectl-v${SPEC_VERSION}`,
releaseWorkflowName: releaseWorkflowName,
// If we don't do this we release the devDependency updates that happen every day, which blows out
// our PyPI storage budget even though there aren't any functional changes.
releasableCommits: ReleasableCommits.featuresAndFixes(),
defaultReleaseBranch: defaultReleaseBranchName,
publishToPypi: {
distName: `aws-cdk.lambda-layer-kubectl-v${SPEC_VERSION}`,
Expand Down
33 changes: 33 additions & 0 deletions API.md

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

13 changes: 7 additions & 6 deletions package.json

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

Loading

0 comments on commit bed1dc7

Please sign in to comment.