File tree Expand file tree Collapse file tree 15 files changed +84
-0
lines changed
Expand file tree Collapse file tree 15 files changed +84
-0
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,8 @@ updates:
1515 directory : " /"
1616 schedule :
1717 interval : " weekly"
18+ cooldown :
19+ default-days : 5
1820 groups :
1921 github :
2022 patterns :
@@ -25,6 +27,8 @@ updates:
2527 directory : " /lambdas"
2628 schedule :
2729 interval : " weekly"
30+ cooldown :
31+ default-days : 5
2832 groups :
2933 aws :
3034 patterns :
@@ -51,31 +55,49 @@ updates:
5155 commit-message :
5256 prefix : " fix(lambda)"
5357 prefix-development : " chore(lambda)"
58+ # Ignore major version updates for Node.js related packages to keep aligned with Lambda runtime as configured via Terraform
59+ ignore :
60+ - dependency-name : " @types/node"
61+ update-types : ["version-update:semver-major"]
5462
5563 - package-ecosystem : " docker"
5664 directory : " /.ci/Dockerfile"
5765 schedule :
5866 interval : " weekly"
67+ cooldown :
68+ default-days : 5
5969 labels :
6070 - " dependencies"
6171 - " docker"
6272 commit-message :
6373 prefix : " chore(docker)"
74+ # Ignore major version updates for Node.js Docker images to keep aligned with Lambda runtime as configured via Terraform
75+ ignore :
76+ - dependency-name : " node"
77+ update-types : ["version-update:semver-major"]
6478
6579 - package-ecosystem : " docker"
6680 directory : " /.devcontainer/Dockerfile"
6781 schedule :
6882 interval : " weekly"
83+ cooldown :
84+ default-days : 5
6985 labels :
7086 - " dependencies"
7187 - " docker"
7288 commit-message :
7389 prefix : " chore(devcontainer)"
90+ # Ignore major version updates for Node.js Docker images to keep aligned with Lambda runtime as configured via Terraform
91+ ignore :
92+ - dependency-name : " mcr.microsoft.com/vscode/devcontainers/typescript-node"
93+ update-types : ["version-update:semver-major"]
7494
7595 - package-ecosystem : " pip"
7696 directory : " /.github/workflows/mkdocs"
7797 schedule :
7898 interval : " weekly"
99+ cooldown :
100+ default-days : 5
79101 groups :
80102 python-deps :
81103 patterns :
Original file line number Diff line number Diff line change 1010 schedule :
1111 - cron : ' 25 19 * * 2'
1212
13+ concurrency :
14+ group : ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}
15+ cancel-in-progress : true
16+
1317permissions :
1418 contents : read
1519
Original file line number Diff line number Diff line change 99name : ' Dependency Review'
1010on : [pull_request]
1111
12+ concurrency :
13+ group : ${{ github.workflow }}-${{ github.ref }}
14+ cancel-in-progress : true
15+
1216permissions : {}
1317
1418jobs :
Original file line number Diff line number Diff line change 88 - ' lambdas/**'
99 - ' .github/workflows/lambda.yml'
1010
11+ concurrency :
12+ group : ${{ github.workflow }}-${{ github.ref }}
13+ cancel-in-progress : true
14+
1115permissions :
1216 contents : read
1317
Original file line number Diff line number Diff line change 77 push :
88 branches : [ "main" ]
99
10+ concurrency :
11+ group : ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}
12+ cancel-in-progress : true
13+
1014permissions :
1115 contents : read # for actions/checkout and repository analysis
1216
Original file line number Diff line number Diff line change 55 merge_group :
66 branches : [main]
77
8+ concurrency :
9+ group : ${{ github.workflow }}-${{ github.ref }}
10+ cancel-in-progress : true
11+
812permissions : {}
913
1014jobs :
Original file line number Diff line number Diff line change 88 - " images/**"
99 - " .github/workflows/packer-build.yml"
1010 - " module/runners/templates/**"
11+
12+ concurrency :
13+ group : ${{ github.workflow }}-${{ github.ref }}
14+ cancel-in-progress : true
15+
1116permissions :
1217 contents : read
1318
Original file line number Diff line number Diff line change 66 - v1
77 workflow_dispatch :
88
9+ concurrency :
10+ group : ${{ github.workflow }}-${{ github.ref }}
11+ cancel-in-progress : false
12+
913permissions :
1014 contents : read
1115
Original file line number Diff line number Diff line change 55 - opened
66 - edited
77 - synchronize
8+
9+ concurrency :
10+ group : ${{ github.workflow }}-${{ github.event.pull_request.number }}
11+ cancel-in-progress : true
12+
813permissions :
914 contents : read # for actions/checkout
1015 pull-requests : read # for amannn/action-semantic-pull-request to check PR details
Original file line number Diff line number Diff line change 33 schedule :
44 - cron : " 30 1 * * *"
55 workflow_dispatch :
6+
7+ concurrency :
8+ group : ${{ github.workflow }}
9+ cancel-in-progress : true
10+
611permissions : {}
712jobs :
813 stale :
You can’t perform that action at this time.
0 commit comments