mirror of https://github.com/astral-sh/ruff
Tell renovate not to try to update GitHub runners (#11324)
This commit is contained in:
parent
6774f27f4b
commit
1a392d34e1
|
|
@ -27,9 +27,20 @@
|
||||||
// Group upload/download artifact updates, the versions are dependent
|
// Group upload/download artifact updates, the versions are dependent
|
||||||
groupName: "Artifact GitHub Actions dependencies",
|
groupName: "Artifact GitHub Actions dependencies",
|
||||||
matchManagers: ["github-actions"],
|
matchManagers: ["github-actions"],
|
||||||
|
matchDatasources: ["gitea-tags", "github-tags"],
|
||||||
matchPackagePatterns: ["actions/.*-artifact"],
|
matchPackagePatterns: ["actions/.*-artifact"],
|
||||||
description: "Weekly update of artifact-related GitHub Actions dependencies",
|
description: "Weekly update of artifact-related GitHub Actions dependencies",
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
// This package rule disables updates for GitHub runners:
|
||||||
|
// we'd only pin them to a specific version
|
||||||
|
// if there was a deliberate reason to do so
|
||||||
|
groupName: "GitHub runners",
|
||||||
|
matchManagers: ["github-actions"],
|
||||||
|
matchDatasources: ["github-runners"],
|
||||||
|
description: "Disable PRs updating GitHub runners (e.g. 'runs-on: macos-14')",
|
||||||
|
enabled: false,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
groupName: "pre-commit dependencies",
|
groupName: "pre-commit dependencies",
|
||||||
matchManagers: ["pre-commit"],
|
matchManagers: ["pre-commit"],
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue