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 37
37
# Remove the template instructions from the README and the template's CHANGELOG
38
38
sed -i ' 1,/^---$/ { /^$/d; d }' README.md
39
39
sed -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
40
43
# Remove this script and the GitHub Action workflow using this script
41
44
rm -f .github/workflows/rename_template.yml
42
45
rm -rf .github/workflows/scripts
You can’t perform that action at this time.
0 commit comments