Skip to content

Commit

Permalink
Fix minimal config for renovate
Browse files Browse the repository at this point in the history
  • Loading branch information
nicholasdille committed Nov 9, 2023
1 parent c6cca97 commit a5fa693
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/renovate-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,19 +18,20 @@ jobs:
- name: Inject custom config
run: |
mkdir -p config
cat <<EOF >config/renovate-small.json
cat <<"EOF" >config/renovate-small.json
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"customManagers": [
{
"customType": "regex",
"datasourceTemplate": "docker",
"depNameTemplate": "docker/dockerfile",
"datasourceTemplate": "github-tags",
"depNameTemplate": "moby/moby",
"extractVersionTemplate": "^v(?<version>.+?)$",
"fileMatch": [
"(^|/|\\.)Dockerfile[^/]*$"
"^tools/docker/manifest.yaml$"
],
"matchStrings": [
"#syntax=(?<depName>.*?):(?<currentValue>.*?)\\n"
"version: \"?(?<currentValue>.*?)\"?\\n"
]
}
],
Expand Down

0 comments on commit a5fa693

Please sign in to comment.