Skip to content
Merged
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
14 changes: 14 additions & 0 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
$schema: 'https://docs.renovatebot.com/renovate-schema.json',
enabledManagers: [
'gitlabci',
],
extends: [
'config:best-practices',
],
automergeStrategy: 'merge-commit',
dependencyDashboardTitle: 'Renovate Dashboard',
schedule: [
'* * * * 2', // Tuesdays only
],
}
5 changes: 5 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -93,3 +93,8 @@ repos:
docs/index.rst|
)$
additional_dependencies: [pygments==2.16.1]
- repo: https://github.com/renovatebot/pre-commit-hooks
rev: 40.5.0
hooks:
- id: renovate-config-validator
name: Check Renovate config with renovate-config-validator
4 changes: 3 additions & 1 deletion bin/convert-formula.sh
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,9 @@ convert_formula() {
| git commit-tree 'HEAD^{tree}')"
git rm --quiet bin/convert-formula.sh AUTHORS.md CHANGELOG.md \
docs/_static/css/custom.css docs/AUTHORS.rst docs/CHANGELOG.rst \
docs/conf.py docs/CONTRIBUTING_DOCS.rst docs/index.rst
docs/conf.py docs/CONTRIBUTING_DOCS.rst docs/index.rst \
.github/renovate.json5 \
&& :
tag_out=$(git tag --list | xargs git tag --delete)
if [ "${DEBUG:-false}" = "true" ]; then
echo "$tag_out"
Expand Down