App
GitHub
The full logs can be found here. What _appears_ to be the relevant snippets:
DEBUG: migrated config
{
...
"ignorePaths": [
"spec/fixtures/**"
]
}
}
DEBUG: Using file match: (^|/)\.ruby-version$ for manager ruby-version
DEBUG: Matched 2 file(s) for manager ruby-version: spec/fixtures/.ruby-version, spec/fixtures/yml2_2/.ruby-version
INFO: Found ruby-version package files
How do I force Renovate to ignore these two configuration files, as it seems the spec/fixtures/** path isn't working for the ruby-version manager?
The documentation for ruby-version is... somewhat lacking, so I'm unsure how to simply disable it if that's an option. (Although I would love the Ruby versions in Travis/Circle CI to be tracked!)
I just discovered that the minimatch glob library ignores dotfiles by default. I have added an option to override that in Renovate so your glob pattern should now work once [email protected] goes live.
You could also disable ruby-version this way:
{
"ruby-version": { "enabled: false }
}
The change I mentioned has now taken effect in your repo and the PR there is autoclosed. Thanks for bringing it to my attention
Thanks for fixing it so quickly as always!