waveterm/.github/dependabot.yml
Evan Simkowitz edb3290349
Move docsite to main repo (#1204)
## Summary

We are moving our docsite to this repo for better coordination.

## What's changed?

- The docsite codebase is now in docs/
- The docsite will replace storybook as the published GitHub Pages site
for this repo
- Storybook will now be hosted at https://docs.waveterm.dev/storybook
- A new CI workflow will validate any changes to Storybook or the
docsite
- A combined CD workflow will build and deploy Storybook and the docsite
as a single artifact
- The Build Helper workflow will now build an embedded version of the
docsite before building the app, ensuring the docsite version it has is
always the latest
2024-11-06 10:45:21 -08:00

60 lines
1.7 KiB
YAML

version: 2
updates:
- package-ecosystem: "npm"
directory: "docs/"
schedule:
interval: "weekly"
day: "friday"
time: "09:00"
timezone: "America/Los_Angeles"
groups:
docsite-dev-dependencies:
dependency-type: "development"
exclude-patterns:
- "*docusaurus*"
docsite-docusaurus:
patterns:
- "*docusaurus*"
docsite-prod-dependencies:
dependency-type: "production"
exclude-patterns:
- "*docusaurus*"
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "weekly"
day: "friday"
time: "09:00"
timezone: "America/Los_Angeles"
groups:
dev-dependencies:
dependency-type: "development"
exclude-patterns:
- "*storybook*"
- "*electron*"
storybook:
patterns:
- "*storybook*"
prod-dependencies:
dependency-type: "production"
exclude-patterns:
- "*electron*"
- "jotai"
electron:
patterns:
- "*electron*"
- package-ecosystem: "gomod"
directory: "/"
schedule:
interval: "weekly"
day: "friday"
time: "09:00"
timezone: "America/Los_Angeles"
- package-ecosystem: "github-actions"
directory: "/.github/workflows"
schedule:
interval: "weekly"
day: "friday"
time: "09:00"
timezone: "America/Los_Angeles"