Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
43 changes: 43 additions & 0 deletions .github/renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
],
"commitMessageLowerCase": "never",
"labels": [
"dependencies"
],
"prConcurrentLimit": 0,
"prHourlyLimit": 0,
"schedule": [
"* 0-7 * * 1"
],
"github-actions": {
"addLabels": [
"skip changelog"
],
"packageRules": [
{
"groupName": "GitHub Actions",
"matchPackageNames": [
"actions/**",
"github/**"
]
},
{
"enabled": false,
"matchUpdateTypes": [
"digest"
]
},
{
"automerge": true,
"matchUpdateTypes": [
"minor",
"patch"
],
"matchCurrentVersion": "!/^0/"
}
]
}
}
3 changes: 3 additions & 0 deletions .github/workflows/scripts/rename_project.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ fi
# Remove the template instructions from the README and the template's CHANGELOG
sed -i '1,/^---$/ { /^$/d; d }' README.md
sed -i '1,/^---$/ { /^$/d; d }' CHANGELOG.md
# Remove Renovatebot and activate Dependabot
rm -f .github/renovate.json
mv .github/dependabot.yml.inactive .github/dependabot.yml
# Remove this script and the GitHub Action workflow using this script
rm -f .github/workflows/rename_template.yml
rm -rf .github/workflows/scripts