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.
I realise there's no issue in the
Backlog
milestone for this. If it's also required for CI changes I can create one or just close thisI noticed in #40146 you added the package-lock and also the action to update it daily.
This PR configures dependabot to automatically open PRs for dependency updates. It then also adds an auto merge action (disclaimer: I wrote this) and configures it to automatically merge PR's that are created by dependabot when the required status checks pass. I'd suggest making some of the checks required so that the merge is blocked if it causes build/test failures.
I think this approach is slightly better than the existing update-package-lock workflow because having the update opened on a PR means all the (required) pr checks run, and need to go green before the update is merged, so it means if there is a dependency update that contains a breaking change, it might be caught before it hits devs, and it highlighted in a PR.
Let me know what you think