Skip to content
Closed
Changes from 10 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
26 changes: 18 additions & 8 deletions .github/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,6 @@
"skipInstalls": false,
"reviewers": ["team:grafana/plugins-platform-frontend"],
"enabledManagers": ["custom.regex", "npm", "github-actions"],
// Extends the github-actions manager to include create-plugin workflow templates
// See: https://docs.renovatebot.com/modules/manager/#extending-a-managers-default-managerfilepatterns
"github-actions": {
"managerFilePatterns": ["/(^|/)packages/create-plugin/templates/github/workflows/.+\\.ya?ml$/"]
},
"postUpdateOptions": ["npmDedupe"],
"labels": ["dependencies", "javascript", "no-changelog"],
"customManagers": [
Expand All @@ -49,6 +44,14 @@
],
"depNameTemplate": "grafana/grafana-enterprise",
"datasourceTemplate": "docker"
},
{
"customType": "regex",
"managerFilePatterns": ["/(^|/)packages/create-plugin/templates/github/workflows/.*\\.ya?ml$/"],
"matchStrings": [
"uses:\\s+(?<depName>[^@]+)@(?<currentValue>\\S+)"
],
"datasourceTemplate": "github-actions"
}
],
"packageRules": [
Expand Down Expand Up @@ -131,12 +134,19 @@
"matchPackageNames": ["!/^@?docusaurus/", "!/@grafana/*/"]
},
{
// disable automerge temporarily until we know the action can update create-plugin hbs templates.
"automerge": false,
"groupName": "create-plugin template github actions",
"labels": ["release", "patch", "create-plugin"],
"reviewers": ["sunker"],
"matchDatasources": ["github-actions"],
"matchFiles": ["packages/create-plugin/templates/github/workflows/**"]
},
{
"automerge": false,
"groupName": "auto-merged gitHub actions",
"labels": ["ci", "github_actions", "dependencies", "no-changelog"],
"reviewers": ["jackw"],
"matchManagers": ["github-actions"]
"matchManagers": ["github-actions"],
"matchFiles": [".github/workflows/**"]
}
],
"vulnerabilityAlerts": {
Expand Down
Loading