## Description This reworks CI now that we have merged docs and website into a single deployment. ## Type of change <!--- Please check the type of change your PR introduces: ---> - [ ] 🌻 Feature - [ ] 🐛 Bugfix - [ ] 🗺️ Documentation - [ ] 🤖 Test - [x] 💻 CI/Deployment - [ ] 🐹 Trivial/Minor ## Issue(s) <!-- Can reference multiple issues. Use one of the following "magic words" - "closes, fixes" to auto-close the Github issue. --> * Fixes https://github.com/alcionai/corso/issues/1551 ## Test Plan <!-- How will this be tested prior to merging.--> - [x] 💪 Manual - [ ] ⚡ Unit test - [ ] 💚 E2E
36 lines
954 B
YAML
36 lines
954 B
YAML
# See: https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
|
|
|
|
version: 2
|
|
updates:
|
|
# Maintain dependencies for GitHub Actions
|
|
- package-ecosystem: "github-actions"
|
|
directory: "/"
|
|
schedule:
|
|
interval: "weekly"
|
|
reviewers:
|
|
- "alcionai/corso-maintainers"
|
|
open-pull-requests-limit: 50
|
|
rebase-strategy: "disabled"
|
|
|
|
# Maintain dependencies for npm - website
|
|
- package-ecosystem: "npm"
|
|
directory: "website/"
|
|
schedule:
|
|
interval: "daily"
|
|
reviewers:
|
|
- "alcionai/corso-maintainers"
|
|
- "ntolia"
|
|
- "gmatev"
|
|
open-pull-requests-limit: 50
|
|
rebase-strategy: "disabled"
|
|
|
|
# Maintain dependencies for go - src
|
|
- package-ecosystem: "gomod"
|
|
directory: "src/"
|
|
schedule:
|
|
interval: "daily"
|
|
reviewers:
|
|
- "alcionai/corso-maintainers"
|
|
open-pull-requests-limit: 50
|
|
rebase-strategy: "disabled"
|