diff --git a/.github/labels.yml b/.github/labels.yml index 3fccf9f..d771bce 100644 --- a/.github/labels.yml +++ b/.github/labels.yml @@ -14,6 +14,10 @@ description: 'Changes to our CI configuration files and scripts' color: '721cdb' +- name: 'dependencies' + description: 'Update of dependencies' + color: '6f38c2' + - name: 'documentation' description: 'Improvements or additions to documentation' color: '0075ca' diff --git a/.github/renovate.json b/.github/renovate.json new file mode 100644 index 0000000..2862859 --- /dev/null +++ b/.github/renovate.json @@ -0,0 +1,8 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": ["config:recommended"], + "baseBranches": ["main"], + "rebaseWhen": "conflicted", + "labels": ["dependencies"], + "reviewers": ["Exeloo"] +}