corso/.github/dependabot.yml
Dhruv Patel d3da57e8c4
chore: turn off dependabot rebase on prs (#1412)
## Description

* dependabot PRs that are constantly being rebased chews up tons of CI
time, this PR will prevent dependabot from rebasing (will require manual
intervention).

## Type of change

<!--- Please check the type of change your PR introduces: --->
- [ ] 🌻 Feature
- [ ] 🐛 Bugfix
- [ ] 🗺️ Documentation
- [ ] 🤖 Test
- [x] 💻 CI/Deployment
- [ ] 🐹 Trivial/Minor

## Test Plan

<!-- How will this be tested prior to merging.-->
- [x] 💪 Manual
- [ ]  Unit test
- [ ] 💚 E2E
2022-11-01 14:45:28 -04:00

44 lines
1.1 KiB
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:
- "corso-maintainers"
open-pull-requests-limit: 50
rebase-strategy: "disabled"
# Maintain dependencies for npm - website
- package-ecosystem: "npm"
directory: "website/"
schedule:
interval: "daily"
reviewers:
- "corso-maintainers"
open-pull-requests-limit: 50
rebase-strategy: "disabled"
# Maintain dependencies for npm - docs
- package-ecosystem: "npm"
directory: "docs/"
schedule:
interval: "daily"
reviewers:
- "corso-maintainers"
open-pull-requests-limit: 50
rebase-strategy: "disabled"
# Maintain dependencies for go - src
- package-ecosystem: "gomod"
directory: "src/"
schedule:
interval: "daily"
reviewers:
- "corso-maintainers"
open-pull-requests-limit: 50
rebase-strategy: "disabled"