Skip to content

Commit

Permalink
feat: Configure Renovate (#36)
Browse files Browse the repository at this point in the history
* Add renovate.json

* chore: customize renovate.json config

* fixed allowed version meant for Python

* fix allowedVersions to use string instead of list

* use matchPackageNames and matchUpdateTypes

Co-authored-by: Adler Santos <adlersantos@google.com>
  • Loading branch information
renovate-bot and adlersantos committed May 27, 2021
1 parent 4176c4b commit d6fd93b
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions renovate.json
@@ -0,0 +1,20 @@
{
"extends": [
"config:base"
],
"prConcurrentLimit": 0,
"rebaseWhen": "never",
"masterIssue": true,
"labels": ["dependencies"],
"packageRules": [
{
"matchPackageNames": ["apache-airflow"],
"allowedVersions": ">=1.10.14,<2.0",
"matchUpdateTypes": ["patch"]
},
{
"matchPackageNames": ["python"],
"allowedVersions": ">=3.8,<3.9"
}
]
}

0 comments on commit d6fd93b

Please sign in to comment.