File tree Expand file tree Collapse file tree 2 files changed +46
-0
lines changed Expand file tree Collapse file tree 2 files changed +46
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Renovate
2+
3+ on :
4+ push :
5+ branches :
6+ - " main"
7+ workflow_dispatch :
8+
9+ jobs :
10+ renovate :
11+ runs-on : ubuntu-latest
12+ steps :
13+ - name : Checkout
14+ uses : actions/checkout@v3.6.0
15+ - name : Self-hosted Renovate
16+ uses : renovatebot/github-action@v39.2.4
17+ with :
18+ token : ${{ secrets.CPP_LINTER_TOKEN }}
Original file line number Diff line number Diff line change 1+ {
2+ "$schema" : " https://docs.renovatebot.com/renovate-schema.json" ,
3+ "baseBranches" : [" main" ],
4+ "rebaseWhen" : " behind-base-branch" ,
5+ "dependencyDashboard" : false ,
6+ "labels" : [" dependencies" ],
7+ "commitMessagePrefix" : " " ,
8+ "commitMessageTopic" : " {{depName}}" ,
9+ "regexManagers" : [
10+ {
11+ "customType" : " regex" ,
12+ "matchStrings" : [
13+ " \\ sappVersion: (?<currentValue>.*)\\ s"
14+ ],
15+ "datasourceTemplate" : " github-releases" ,
16+ "depNameTemplate" : " cpp-linter/clang-tools-static-binaries" ,
17+ "extractVersionTemplate" : " ^master-\\ w*"
18+ }
19+ ],
20+ "packageRules" : [
21+ {
22+ "matchDatasources" : [" github-releases" ],
23+ "matchDepNames" : [" cpp-linter/clang-tools-static-binaries" ],
24+ "matchUpdateTypes" : [" minor" , " patch" ],
25+ "automerge" : true
26+ }
27+ ]
28+ }
You can’t perform that action at this time.
0 commit comments