-
Notifications
You must be signed in to change notification settings - Fork 2
Chore: [AEA-0000] - Depenadabot cooldown #2909
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 2 commits
e104350
45aa0b1
cc2b8a5
6a4e404
0dc072e
2f179e9
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -23,6 +23,8 @@ updates: | |
| open-pull-requests-limit: 20 | ||
| commit-message: | ||
| prefix: "Upgrade: [dependabot] - " | ||
| cooldown: | ||
| default-days: 3 | ||
| - package-ecosystem: "github-actions" | ||
| # Workflow files stored in the | ||
| # default location of `.github/workflows` | ||
|
|
@@ -34,6 +36,8 @@ updates: | |
| open-pull-requests-limit: 20 | ||
| commit-message: | ||
| prefix: "Upgrade: [dependabot] - " | ||
| cooldown: | ||
| default-days: 3 | ||
|
Comment on lines
+39
to
+40
|
||
|
|
||
| ################################### | ||
| # NPM workspace ################## | ||
|
|
@@ -50,3 +54,5 @@ updates: | |
| prefix: "Upgrade: [dependabot] - " | ||
| registries: | ||
| - npm-github | ||
| cooldown: | ||
| default-days: 3 | ||
|
Comment on lines
+57
to
+58
|
||
| Original file line number | Diff line number | Diff line change | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,19 @@ | ||||||||||||||
| name: Update Devcontainer Version | ||||||||||||||
|
|
||||||||||||||
| on: | ||||||||||||||
| workflow_dispatch: | ||||||||||||||
| schedule: | ||||||||||||||
| - cron: "0 18 * * 4" | ||||||||||||||
|
|
||||||||||||||
| jobs: | ||||||||||||||
| update_devcontainer_version: | ||||||||||||||
| uses: NHSDigital/eps-common-workflows/.github/workflows/update-dev-container-version.yml@d2a4595b1bfa59f04c7cecb080a126321d42a333 | ||||||||||||||
|
||||||||||||||
| permissions: | ||||||||||||||
| contents: read | ||||||||||||||
| packages: read | ||||||||||||||
| pull-requests: write | ||||||||||||||
|
||||||||||||||
| contents: read | |
| packages: read | |
| pull-requests: write | |
| contents: read | |
| packages: read | |
| pull-requests: write |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
cooldown/default-daysis not part of the standard Dependabot v2 configuration keys (keys are validated by GitHub). If this field isn't supported in your GitHub org/instance, it will cause Dependabot to reject the entire config and stop creating update PRs. Please verify support forcooldownor replace with an officially supported mechanism (e.g., adjustschedule, usegroups, or rely onopen-pull-requests-limit).