Disabled package still gives warnings #42301
-
How are you running Renovate?A Mend.io-hosted app Which platform you running Renovate on?GitHub.com Which version of Renovate are you using?43.100.0 Please tell us more about your question or problemGiven #38394, I have persistent warnings which don't really help, but given that the bash language doesn't really evolve that much, I'd rather skip checking that and avoid the warning that way. So what I did is to add a packageRule to ignore that package in my {
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:best-practices",
"helpers:pinGitHubActionDigestsToSemver",
":rebaseStalePrs",
":maintainLockFilesMonthly",
":enablePreCommit",
"schedule:weekly",
":label(renovate)"
],
"packageRules": [
{
"matchPackageNames": [
"shellcheck-py/shellcheck-py",
],
"enabled": false
}
]
}But I still get a warning: How do I tell renovate not to bother with this specific package? Disabling pre-commit is not an option since I'd like to keep updating the rest, and that works as expected. For reference I have something like this in pre-commit config - repo: https://github.com/shellcheck-py/shellcheck-py
rev: v0.10.0.1
hooks:
- id: shellcheck
args:
- --external-sources
- --source-path=SCRIPTDIRLogs (if relevant)Logs |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
|
Hi there, Please locate the debug message If you self-host Renovate: make sure you run Renovate with Find the relevant dependency/dependencies in the log message, and copy/paste those parts into this discussion. If you do not know which bits we need, you can copy/paste the full log message. Read the Renovate docs, Troubleshooting to learn more about getting the docs, and getting the correct type of logs. Thanks, the Renovate team |
Beta Was this translation helpful? Give feedback.
-
|
Wait seems like it actually worked the first time! It just took "a little bit too long" to update 🤦 |
Beta Was this translation helpful? Give feedback.
Wait seems like it actually worked the first time!
It just took "a little bit too long" to update 🤦