ci: add dependabot config to manage dependency updates#194
Draft
ci: add dependabot config to manage dependency updates#194
Conversation
This was referenced Jul 12, 2024
dbjorge
requested changes
Jul 23, 2024
Comment on lines
+10
to
+11
| registries: | ||
| - 'npm-agora' |
| version: 2 | ||
| updates: | ||
| - package-ecosystem: 'npm' | ||
| directory: '/' |
Contributor
There was a problem hiding this comment.
I don't think this is going to work as-is (it'll update the root package.json but not the inner ones); most of our repos can use this sort of config because the generally use yarn workspaces, but we intentionally set up the examples repo to not use workspaces so the examples will operate more independently.
Workspaces used to be a requirement to make a reasonable dependabot config, but as of quite recently they support a multi-directory specification we should try here.
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This PR sets up dependabot so we can stay on top of dependencies. Each framework will have its own group so it is only tied into the generic npm dependencies such as eslnt etc.
Should let #193 land first before merging this as that updates most dependencies.
No QA Required