diff --git a/README.md b/README.md index 5983f93..e458d5b 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/go.mod b/go.mod index 4b80080..b2b4c8b 100644 --- a/go.mod +++ b/go.mod @@ -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 ( @@ -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 ) diff --git a/renovate.json b/renovate.json index 11fad80..fc4c325 100644 --- a/renovate.json +++ b/renovate.json @@ -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 + } + ] }