Skip to content

Commit

Permalink
change upgrade schedule to weekly
Browse files Browse the repository at this point in the history
  • Loading branch information
LarsFronius committed Jan 3, 2024
1 parent fdd358b commit 2fceb83
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/upgrade-main.yml

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

6 changes: 6 additions & 0 deletions .projenrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ const { awscdk } = require('projen');
const {
NodeProject,
NpmAccess,
UpgradeDependenciesSchedule,
} = require('projen/lib/javascript');

const project = new awscdk.AwsCdkConstructLibrary({
Expand All @@ -16,6 +17,11 @@ const project = new awscdk.AwsCdkConstructLibrary({
devDeps: ['@aws-cdk/assert'],
excludeTypescript: ['src/commercetools-subscription-provider/**', 'src/commercetools-api-extension-provider/**'],
eslint: true,
depsUpgradeOptions: {
workflowOptions: {
schedule: UpgradeDependenciesSchedule.WEEKLY,
},
},
eslintOptions: {
ignorePatterns: ['src/commercetools-subscription-provider/**', 'src/commercetools-api-extension-provider/**'],
},
Expand Down

0 comments on commit 2fceb83

Please sign in to comment.