Skip to content
Draft
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
31 changes: 0 additions & 31 deletions .github/dependabot.yml

This file was deleted.

8 changes: 6 additions & 2 deletions .github/workflows/pr_title.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,14 @@ jobs:
- run: npm install @commitlint/config-conventional
- run: >
echo 'module.exports = {
// Workaround for https://github.com/dependabot/dependabot-core/issues/5923
// Bot PR descriptions are not conventional-commit bodies, so do not lint them.
"ignores": [
// Dependabot, see https://github.com/dependabot/dependabot-core/issues/5923.
// Kept while dependabot PRs opened before the switch to renovate are still open.
(message) => /^Bumps \[.+]\(.+\) from .+ to .+\.$/m.test(message),
(message) => /^Updates the requirements on .+ to permit the latest version\.$/m.test(message)
(message) => /^Updates the requirements on .+ to permit the latest version\.$/m.test(message),
// Renovate
(message) => /^This PR contains the following updates:$/m.test(message)
],
"rules": {
"body-max-line-length": [0, "always", Infinity],
Expand Down
32 changes: 32 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
":semanticCommitTypeAll(chore)",
":maintainLockFilesWeekly"
],
"semanticCommits": "enabled",
"semanticCommitType": "chore",
"semanticCommitScope": "deps",
"packageRules": [
{
"description": "Port of the dependabot substrait group. check_substrait_package_versions.sh requires all three packages to carry the same version, so they have to move together",
"matchPackageNames": [
"substrait-protobuf",
"substrait-antlr",
"substrait-extensions"
],
"groupName": "substrait packages"
},
{
"description": "Match the deps-dev scope dependabot used for development dependencies",
"matchDepTypes": ["dependency-groups", "project.optional-dependencies"],
"semanticCommitScope": "deps-dev"
},
{
"description": "Changing the supported Python version is a project decision, not a routine bump",
"matchPackageNames": ["python"],
"enabled": false
}
]
}