Skip to content

Commit

Permalink
More fixes for renovate #634
Browse files Browse the repository at this point in the history
  • Loading branch information
nicholasdille committed Oct 5, 2023
1 parent c0d2314 commit dc1ce0a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -1844,15 +1844,15 @@
{
"datasourceTemplate": "git-tags",
"depNameTemplate": "forgejo/forgejo",
"extractVersionTemplate": "^v(?<version>\\d+\\.\\d+\\.\\d+(-\\d+)?)$",
"extractVersionTemplate": "^v(?<version>\\d+\\.\\d+\\.\\d+-\\d+?)$",
"fileMatch": [
"^tools/forgejo/manifest.yaml$"
],
"matchStrings": [
"version: \"?(?<currentValue>.*?)\"?\\n"
],
"packageNameTemplate": "https://codeberg.org/forgejo/forgejo",
"versioningTemplate": "loose"
"versioningTemplate": "regex:^(?<major>\\d+?)\\.(?<minor>\\d+?)\\.(?<patch>\\d+?)-(?<build>\\d+?)$"
},
{
"datasourceTemplate": "github-releases",
Expand Down Expand Up @@ -5132,7 +5132,7 @@
{
"datasourceTemplate": "git-tags",
"depNameTemplate": "git://repo.or.cz/socat.git",
"extractVersionTemplate": "^tag-(<version>\\d+\\.\\d+\\.\\d+(\\.\\d+)?)$",
"extractVersionTemplate": "^tag-(?<version>\\d+\\.\\d+\\.\\d+(\\.\\d+)??)$",
"fileMatch": [
"^tools/socat/manifest.yaml$"
],
Expand Down
4 changes: 2 additions & 2 deletions tools/forgejo/manifest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ renovate:
datasource: git-tags
package: forgejo/forgejo
url: https://codeberg.org/forgejo/forgejo
extractVersion: ^v(?<version>\d+\.\d+\.\d+(-\d+)?)$
versioning: loose
extractVersion: ^v(?<version>\d+\.\d+\.\d+-\d+?)$
versioning: regex:^(?<major>\d+?)\.(?<minor>\d+?)\.(?<patch>\d+?)-(?<build>\d+?)$
priority: low
2 changes: 1 addition & 1 deletion tools/socat/manifest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ description: Multipurpose relay
renovate:
datasource: git-tags
package: git://repo.or.cz/socat.git
extractVersion: ^tag-(<version>\d+\.\d+\.\d+(\.\d+)?)$
extractVersion: ^tag-(?<version>\d+\.\d+\.\d+(\.\d+)??)$
versioning: loose
priority: low

0 comments on commit dc1ce0a

Please sign in to comment.