chore: enable examples updates with Renovate#1691
Merged
jennifer-shehane merged 1 commit intocypress-io:masterfrom Mar 19, 2026
Merged
chore: enable examples updates with Renovate#1691jennifer-shehane merged 1 commit intocypress-io:masterfrom
jennifer-shehane merged 1 commit intocypress-io:masterfrom
Conversation
|
jennifer-shehane
approved these changes
Mar 19, 2026
|
🎉 This PR is included in version 7.1.8 🎉 The release is available on: Your semantic-release bot 📦🚀 |
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.
Situation
When a new version of Cypress is released, it is being updated in the examples sub-directories by manually running scripts/update-cypress-latest.sh on Ubuntu and then manually submitting a PR with the changes.
Renovate is already established in this repo, however the settings in renovate.json include extend from config:recommended, which includes :ignoreModulesAndTests with
ignorePathsfor"**/examples/**".Change
Modify the renovate.json configuration to update the examples sub-directories by overriding the
ignorePathspreset from :ignoreModulesAndTests.Initially only
devDependencies(includingcypress) are targeted, due to a global exclusion ofdependencies. This may be enhanced to includedependenciesin examples only, in a later step. (Allowing Renovate to updatedependenciesin the root of the repo does not work because the action needs to be rebuilt in this case, and there is no available workflow to do this task.)Verification
Note
Low Risk
Low risk config-only change that affects which paths Renovate scans; main impact is increased dependency update PRs from
examplesfolders.Overview
Updates
renovate.jsonto explicitly setignorePathsto only**/node_modules/**, overriding theconfig:recommendedpreset’s broader path ignores so Renovate can propose dependency updates inside theexamplesdirectories.Written by Cursor Bugbot for commit a0e5180. This will update automatically on new commits. Configure here.