-
Notifications
You must be signed in to change notification settings - Fork 60
Replace dependabot.yml with renovate.json #999
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
Merged
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
984b72a
Initial plan
Copilot b254efe
chore: replace dependabot.yml with renovate.json
Copilot 1410478
chore: remove eslint 9.0-9.12 ignore rule (Next.js eslint 9 support r…
Copilot 9cb75de
Potential fix for pull request finding
dthaler c6649bb
fix: stop Heroku workflow from failing on every issue comment
rainhead 9d86a17
Merge branch 'fix/heroku-workflow-comment-trigger' into copilot/repla…
rainhead File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,90 @@ | ||
| { | ||
| "$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
| "extends": ["config:base"], | ||
| "timezone": "America/Los_Angeles", | ||
| "packageRules": [ | ||
| { | ||
| "description": "Monthly updates for GitHub Actions, grouped together", | ||
| "matchManagers": ["github-actions"], | ||
| "groupName": "actions", | ||
| "schedule": ["after 5am on the first day of the month"], | ||
| "prConcurrentLimit": 3 | ||
| }, | ||
| { | ||
| "description": "Weekly Docker dependency updates on Mondays", | ||
| "matchManagers": ["dockerfile", "docker-compose"], | ||
| "schedule": ["after 5am on monday"], | ||
| "prConcurrentLimit": 3 | ||
| }, | ||
| { | ||
| "description": "Ignore odd-numbered Node.js major versions in Docker (non-LTS). Even-numbered releases are also skipped for the first 6 months, but there is no way to configure that here yet.", | ||
| "matchManagers": ["dockerfile"], | ||
| "matchPackageNames": ["node"], | ||
| "allowedVersions": "/^([0-9]*[02468])\\.(\\d+)/" | ||
| }, | ||
| { | ||
| "description": "Weekly Elixir/Mix dependency updates on Mondays", | ||
| "matchManagers": ["mix"], | ||
| "schedule": ["after 5am on monday"], | ||
| "prConcurrentLimit": 3 | ||
| }, | ||
| { | ||
| "description": "Weekly npm dependency updates on Mondays", | ||
| "matchManagers": ["npm"], | ||
| "schedule": ["after 5am on monday"], | ||
| "prConcurrentLimit": 3 | ||
| }, | ||
| { | ||
| "description": "Group miscellaneous npm dependencies (catch-all, excludes packages that get individual PRs)", | ||
| "matchManagers": ["npm"], | ||
| "excludePackageNames": ["typescript", "phoenix", "@types/node"], | ||
| "groupName": "misc" | ||
| }, | ||
| { | ||
| "description": "Group Next.js and React framework dependencies", | ||
| "matchManagers": ["npm"], | ||
| "matchPackageNames": ["next", "react", "react-dom", "@types/react", "@types/react-dom"], | ||
| "groupName": "frameworks" | ||
| }, | ||
| { | ||
| "description": "Group MUI, Emotion, and Fontsource styling dependencies", | ||
| "matchManagers": ["npm"], | ||
| "matchPackagePatterns": ["^@mui/", "^@emotion/", "^@fontsource/"], | ||
| "groupName": "styles" | ||
| }, | ||
| { | ||
| "description": "Group GraphQL and data fetching dependencies", | ||
| "matchManagers": ["npm"], | ||
| "matchPackagePatterns": ["^graphql$", "^@graphql-codegen/", "^@tanstack/react-query"], | ||
| "groupName": "requests" | ||
| }, | ||
| { | ||
| "description": "Group Leaflet and map dependencies", | ||
| "matchManagers": ["npm"], | ||
| "matchPackagePatterns": ["^leaflet", "^react-leaflet$", "^@types/leaflet$"], | ||
| "groupName": "map" | ||
| }, | ||
| { | ||
| "description": "Group Video.js player dependencies", | ||
| "matchManagers": ["npm"], | ||
| "matchPackagePatterns": ["^video\\.js$", "^videojs", "^@types/video\\.js$"], | ||
| "groupName": "player" | ||
| }, | ||
| { | ||
| "description": "Group ESLint, Prettier, and code style dependencies", | ||
| "matchManagers": ["npm"], | ||
| "matchPackagePatterns": ["^eslint", "^@typescript-eslint/", "^prettier$", "^lint-staged$", "^husky$"], | ||
| "groupName": "code-style" | ||
| }, | ||
| { | ||
| "description": "Ignore eslint-plugin-unused-imports versions 4.0 - 4.1", | ||
| "matchPackageNames": ["eslint-plugin-unused-imports"], | ||
| "allowedVersions": "< 4.0.0 || >= 4.2.0" | ||
| }, | ||
| { | ||
| "description": "Ignore @typescript-eslint/eslint-plugin versions 8.0 - 8.9", | ||
| "matchPackageNames": ["@typescript-eslint/eslint-plugin"], | ||
| "allowedVersions": "< 8.0.0 || >= 8.10.0" | ||
| } | ||
| ] | ||
| } | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.