mirror of
https://github.com/wavetermdev/waveterm
synced 2026-05-06 06:58:21 +00:00
Try reverting Dependabot changes (#1736)
I found a discrepancy in our docs package that could be the reason for the Dependabot timeouts. I'm going to try reverting my earlier changes to see if this is fixed
This commit is contained in:
parent
5040ec9dd6
commit
598b2dfdba
1 changed files with 48 additions and 0 deletions
48
.github/dependabot.yml
vendored
48
.github/dependabot.yml
vendored
|
|
@ -20,6 +20,17 @@ updates:
|
|||
update-types:
|
||||
- "minor"
|
||||
- "patch"
|
||||
dev-dependencies-major:
|
||||
dependency-type: "development"
|
||||
exclude-patterns:
|
||||
- "*storybook*"
|
||||
- "*electron*"
|
||||
- "jotai"
|
||||
- "react"
|
||||
- "@types/react"
|
||||
- "*docusaurus*"
|
||||
update-types:
|
||||
- "major"
|
||||
|
||||
prod-dependencies:
|
||||
dependency-type: "production"
|
||||
|
|
@ -33,6 +44,17 @@ updates:
|
|||
update-types:
|
||||
- "minor"
|
||||
- "patch"
|
||||
prod-dependencies-major:
|
||||
dependency-type: "production"
|
||||
exclude-patterns:
|
||||
- "*storybook*"
|
||||
- "*electron*"
|
||||
- "jotai"
|
||||
- "react"
|
||||
- "@types/react"
|
||||
- "*docusaurus*"
|
||||
update-types:
|
||||
- "major"
|
||||
|
||||
storybook:
|
||||
patterns:
|
||||
|
|
@ -40,6 +62,11 @@ updates:
|
|||
update-types:
|
||||
- "minor"
|
||||
- "patch"
|
||||
storybook-major:
|
||||
patterns:
|
||||
- "*storybook*"
|
||||
update-types:
|
||||
- "major"
|
||||
|
||||
electron:
|
||||
patterns:
|
||||
|
|
@ -47,6 +74,11 @@ updates:
|
|||
update-types:
|
||||
- "minor"
|
||||
- "patch"
|
||||
electron-major:
|
||||
patterns:
|
||||
- "*electron*"
|
||||
update-types:
|
||||
- "major"
|
||||
|
||||
docusaurus:
|
||||
patterns:
|
||||
|
|
@ -54,6 +86,11 @@ updates:
|
|||
update-types:
|
||||
- "minor"
|
||||
- "patch"
|
||||
docusaurus-major:
|
||||
patterns:
|
||||
- "*docusaurus*"
|
||||
update-types:
|
||||
- "major"
|
||||
|
||||
react:
|
||||
patterns:
|
||||
|
|
@ -62,6 +99,12 @@ updates:
|
|||
update-types:
|
||||
- "minor"
|
||||
- "patch"
|
||||
react-major:
|
||||
patterns:
|
||||
- "react"
|
||||
- "@types/react"
|
||||
update-types:
|
||||
- "major"
|
||||
|
||||
jotai:
|
||||
patterns:
|
||||
|
|
@ -69,6 +112,11 @@ updates:
|
|||
update-types:
|
||||
- "minor"
|
||||
- "patch"
|
||||
jotai-major:
|
||||
patterns:
|
||||
- "jotai"
|
||||
update-types:
|
||||
- "major"
|
||||
- package-ecosystem: "gomod"
|
||||
directory: "/"
|
||||
schedule:
|
||||
|
|
|
|||
Loading…
Reference in a new issue