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
1 change: 1 addition & 0 deletions .github/workflows/docker.yml
Original file line numberDiff line numberDiff line change
Expand Up@@ -3,6 +3,7 @@ on:
push:
branches:
- master
- renovate/**
tags:
- 'v*'
pull_request:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/main.yml
Original file line numberDiff line numberDiff line change
Expand Up@@ -3,6 +3,7 @@ on:
push:
branches:
- master
- renovate/**
pull_request:
branches:
- master
Expand Down
1 change: 1 addition & 0 deletions codingteam.org.ru.sln
Original file line numberDiff line numberDiff line change
Expand Up@@ -14,6 +14,7 @@ ProjectSection(SolutionItems) = preProject
README.md = README.md
CHANGELOG.md = CHANGELOG.md
MAINTAINERSHIP.md = MAINTAINERSHIP.md
renovate.json = renovate.json
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".github", ".github", "{339BA2DC-3628-4E8E-98CC-264B5A3625AA}"
Expand Down
23 changes: 19 additions & 4 deletions renovate.json
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,21 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
]
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
],
"automerge": true,
"automergeType": "branch",
"customManagers": [
{
"description": "Update the GitHub Actions runners.",
"customType": "regex",
"managerFilePatterns": [
".github/workflows/*.yml"
],
"matchStrings": [
"(?<depName>macos|ubuntu|windows)-(?<currentValue>[-\\w.\\d]+)"
],
"datasourceTemplate": "github-runners"
}
]
}