Closed ChiTimesChi closed 1 month ago
The changes introduce a new property, "ignorePaths"
, to the .github/renovate.json
configuration file. This property is designed to ignore paths that match the pattern "packages/contracts-core/**"
, while all other existing configurations, including settings related to semantic commits, labels, branch prefixes, and package rules, remain unchanged.
File | Change Summary |
---|---|
.github/renovate.json | Added property "ignorePaths": ["packages/contracts-core/**"] |
sequenceDiagram
participant User
participant Renovate
participant GitHub
User->>GitHub: Push changes
GitHub->>Renovate: Trigger update
Renovate->>Renovate: Check configuration
alt Path matches ignorePaths
Renovate-->>GitHub: Ignore updates for "packages/contracts-core/**"
else Path does not match
Renovate-->>GitHub: Process updates
end
In the garden where code does bloom,
A new path ignored, makes room!
With hops and skips, we tidy the way,
For contracts core, weβll not sway.
A gentle nudge, a soft little cheer,
Changes are here, letβs give a big cheer! πβ¨
.github/renovate.json (1)
`20-20`: **LGTM: Addition of `ignorePaths` aligns with PR objectives.** The new `ignorePaths` property is correctly added to the Renovate configuration file. This change aligns with the PR objective of adding the `contracts-core` directory to the list of ignored paths in the CI configuration. A few points to consider: 1. The syntax is correct and follows JSON format. 2. This change will exclude the `packages/contracts-core/` directory and all its subdirectories from Renovate's dependency updates. 3. Ensure that ignoring this path is intentional and won't lead to outdated dependencies in critical parts of the project. To verify the impact and consistency of this change, let's run the following script: This script will help verify the existence of the ignored directory, check for potential package files that might be affected, and ensure consistency with other configurations.
Latest commit: |
8086be3
|
Status: | β Deploy successful! |
Preview URL: | https://22e0baf7.sanguine-fe.pages.dev |
Branch Preview URL: | https://ci-renovate-ignore-contracts.sanguine-fe.pages.dev |
Description Small edit to keep PRs like #3241 from popping up.
Summary by CodeRabbit