File tree Expand file tree Collapse file tree 3 files changed +46
-0
lines changed Expand file tree Collapse file tree 3 files changed +46
-0
lines changed File renamed without changes.
Original file line number Diff line number Diff line change 1+ {
2+ "$schema" : " https://docs.renovatebot.com/renovate-schema.json" ,
3+ "extends" : [
4+ " config:recommended"
5+ ],
6+ "commitMessageLowerCase" : " never" ,
7+ "labels" : [
8+ " dependencies"
9+ ],
10+ "prConcurrentLimit" : 0 ,
11+ "prHourlyLimit" : 0 ,
12+ "schedule" : [
13+ " * 0-7 * * 1"
14+ ],
15+ "github-actions" : {
16+ "addLabels" : [
17+ " skip changelog"
18+ ],
19+ "packageRules" : [
20+ {
21+ "groupName" : " GitHub Actions" ,
22+ "matchPackageNames" : [
23+ " actions/**" ,
24+ " github/**"
25+ ]
26+ },
27+ {
28+ "enabled" : false ,
29+ "matchUpdateTypes" : [
30+ " digest"
31+ ]
32+ },
33+ {
34+ "automerge" : true ,
35+ "matchUpdateTypes" : [
36+ " minor" ,
37+ " patch"
38+ ],
39+ "matchCurrentVersion" : " !/^0/"
40+ }
41+ ]
42+ }
43+ }
Original file line number Diff line number Diff line change 3737# Remove the template instructions from the README and the template's CHANGELOG
3838sed -i ' 1,/^---$/ { /^$/d; d }' README.md
3939sed -i ' 1,/^---$/ { /^$/d; d }' CHANGELOG.md
40+ # Remove Renovatebot and activate Dependabot
41+ rm -f .github/renovate.json
42+ mv .github/dependabot.yml.inactive .github/dependabot.yml
4043# Remove this script and the GitHub Action workflow using this script
4144rm -f .github/workflows/rename_template.yml
4245rm -rf .github/workflows/scripts
You can’t perform that action at this time.
0 commit comments