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
4 changes: 4 additions & 0 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,10 @@ categories:
- "submodules"
change-template: "- $TITLE ([#$NUMBER]($URL)) ([**@$AUTHOR**](https://github.com/$AUTHOR))"
change-title-escapes: '\<*_&'
exclude-labels:
- "skip-changelog"
- "backport"
- "release-prep"
version-resolver:
major:
labels:
Expand Down
34 changes: 32 additions & 2 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
{
$schema: "https://docs.renovatebot.com/renovate-schema.json",
suppressNotifications: ["prEditedNotification"],
minimumReleaseAge: '7 days',
extends: [
"config:recommended",
":gitSignOff",
Expand Down Expand Up @@ -52,10 +54,38 @@
},
{
description: "Group and automerge all patch updates",
groupName: "patch versions",
groupSlug: "all-patch",
groupName: "patch updates",
matchUpdateTypes: ["patch"],
matchCurrentVersion: "!/^0\.0/",
commitMessagePrefix: "⬆\uFE0F\uD83E\uDE79",
automerge: true
},
{
description: "Group and automerge all minor updates of stable dependencies (except our own packages)",
groupName: "minor stable updates",
matchUpdateTypes: ["minor"],
matchCurrentVersion: "!/^0\./",
matchPackageNames: [
"!munich-quantum-toolkit/*",
"!munich-quantum-software/*",
],
commitMessagePrefix: "⬆\uFE0F\uD83E\uDE79",
automerge: true
},
{
description: 'Disable minimum release age checks for our own GitHub Actions',
matchManagers: ['github-actions'],
matchPackageNames: [
'munich-quantum-toolkit/*',
'munich-quantum-software/*',
],
minimumReleaseAge: null,
},
{
description: 'Disable minimum release age checks for our own Python packages',
matchDatasources: ['pypi'],
matchPackageNames: ['mqt*'],
minimumReleaseAge: null,
}
]
}
Loading