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/"
Copy link
Preview

Copilot AI Aug 28, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The regex pattern '!/^0/' is invalid syntax for Renovate's matchCurrentVersion. It should use standard regex format without the negation prefix, such as '^[1-9]' to match versions not starting with 0.

Suggested change
"matchCurrentVersion": "!/^0/"
"matchCurrentVersion": "^[1-9]"

Copilot uses AI. Check for mistakes.

}
]
}
Comment on lines +15 to +42
Copy link
Preview

Copilot AI Aug 28, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The 'github-actions' key is not a valid Renovate configuration option. This should be nested within 'packageRules' as a manager-specific rule or moved to the root level as separate configuration options.

Suggested change
"github-actions": {
"addLabels": [
"skip changelog"
],
"packageRules": [
{
"groupName": "GitHub Actions",
"matchPackageNames": [
"actions/**",
"github/**"
]
},
{
"enabled": false,
"matchUpdateTypes": [
"digest"
]
},
{
"automerge": true,
"matchUpdateTypes": [
"minor",
"patch"
],
"matchCurrentVersion": "!/^0/"
}
]
}
"packageRules": [
{
"groupName": "GitHub Actions",
"manager": "github-actions",
"matchPackageNames": [
"actions/**",
"github/**"
],
"addLabels": [
"skip changelog"
]
},
{
"enabled": false,
"manager": "github-actions",
"matchUpdateTypes": [
"digest"
],
"addLabels": [
"skip changelog"
]
},
{
"automerge": true,
"manager": "github-actions",
"matchUpdateTypes": [
"minor",
"patch"
],
"matchCurrentVersion": "!/^0/",
"addLabels": [
"skip changelog"
]
}
]

Copilot uses AI. Check for mistakes.

}
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