Skip to content

Commit

Permalink
fix(renovate): ignore major version of yaml.v2
Browse files Browse the repository at this point in the history
  • Loading branch information
depado committed Sep 21, 2023
1 parent 80df920 commit 8a910db
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -447,3 +447,10 @@ workspace:
This file will be rendered if, and only if, the user answered yes to that
question. Note that `if` and `copy` can work together if you just want
to copy the file and not render it.

# ToDo

- [ ] Ignore file list in `.quokka.yml`
- Use case: Add a `README.md` to document the template along with
`README.md.tmpl` with a `rename` directive. This would avoids the front-matter
in the template documentation.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ require (
gopkg.in/AlecAivazis/survey.v1 v1.8.8
gopkg.in/src-d/go-git.v4 v4.13.1
gopkg.in/yaml.v2 v2.4.0
gopkg.in/yaml.v3 v3.0.1
)

require (
Expand Down Expand Up @@ -55,4 +54,5 @@ require (
gopkg.in/ini.v1 v1.67.0 // indirect
gopkg.in/src-d/go-billy.v4 v4.3.2 // indirect
gopkg.in/warnings.v0 v0.1.2 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
9 changes: 8 additions & 1 deletion renovate.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:base", ":automergeMinor"]
"extends": ["config:base", ":automergeMinor"],
"packageRules": [
{
"matchPackageNames": ["gopkg.in/yaml.v2"],
"matchUpdateTypes": ["major"],
"enabled": false
}
]
}

0 comments on commit 8a910db

Please sign in to comment.