Skip to content

Commit

Permalink
Renovate: don't add any labels
Browse files Browse the repository at this point in the history
There are still a lot of CI job runs that are wrongly cancelled, leaving the wrong job run running, causing the PR checks to not "become green".

Follow-up of #projectnessie#7720
  • Loading branch information
snazy committed Feb 13, 2024
1 parent c9a58b7 commit 57869d8
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,19 @@
},

packageRules: [
// do not add any labels, because that conflicts with CI job restarts, causing the wrong CI run
// to be cancelled in GitHub actions when the `labeled` type is used in e.g. `on.pull_request.types`.
{
matchManagers: ["maven", "gradle", "gradle-wrapper"],
"labels": ["dependencies"],
labels: [],
},
{
matchManagers: ["pip_requirements", "pip_setup"],
"labels": ["dependencies"],
labels: [],
},
{
matchManagers: ["dockerfile"],
"labels": ["dependencies"],
labels: [],
},

// Check for updates, merge automatically
Expand Down Expand Up @@ -72,7 +74,7 @@
],
"labels": ["pr-native", "pr-docker"]
},

// Reduce awssdk update frequency (which has daily releases)
{
matchManagers: ["maven", "gradle"],
Expand Down

0 comments on commit 57869d8

Please sign in to comment.