diff options
author | Jacek <jacek.poreda@sonarsource.com> | 2022-01-24 15:49:08 +0100 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2022-01-24 20:02:52 +0000 |
commit | cda8e273cbce69ea0831055e622d5e2185de98d1 (patch) | |
tree | dc7b8f1a21834bc5d3138055e57ae90e3be922c3 /.github/config.js | |
parent | 5645ca9451af0edf158caff8e3ecd8f33f8e1c17 (diff) | |
download | sonarqube-cda8e273cbce69ea0831055e622d5e2185de98d1.tar.gz sonarqube-cda8e273cbce69ea0831055e622d5e2185de98d1.zip |
Add on-demand GH action to handle Renovate for managing 3rd party dependencies
Diffstat (limited to '.github/config.js')
-rw-r--r-- | .github/config.js | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.github/config.js b/.github/config.js new file mode 100644 index 00000000000..d28a383d31b --- /dev/null +++ b/.github/config.js @@ -0,0 +1,14 @@ +module.exports = { + onboardingConfig: { + extends: ["config:base"], + }, + platform: "github", + onboarding: false, + includeForks: false, + branchPrefix: "renovate/", + gitAuthor: "sonarqubetech-sonarenterprise", + baseBranches: ["master"], + repositories: [ + "SonarSource/sonar-enterprise", + ], + }; |