This repository was archived by the owner on Oct 3, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +54
-0
lines changed Expand file tree Collapse file tree 3 files changed +54
-0
lines changed Original file line number Diff line number Diff line change 2147
2147
" * 21 * * *"
2148
2148
]
2149
2149
},
2150
+ {
2151
+ "matchFiles" : [
2152
+ " ^tools/gron/manifest.yaml$"
2153
+ ],
2154
+ "matchPackageNames" : [
2155
+ " tomnomnom/gron"
2156
+ ],
2157
+ "schedule" : [
2158
+ " * 21 * * *"
2159
+ ]
2160
+ },
2150
2161
{
2151
2162
"matchFiles" : [
2152
2163
" ^tools/grunt/manifest.yaml$"
7771
7782
" version: \" ?(?<currentValue>.*?)\" ?\\ n"
7772
7783
]
7773
7784
},
7785
+ {
7786
+ "datasourceTemplate" : " github-releases" ,
7787
+ "depNameTemplate" : " tomnomnom/gron" ,
7788
+ "extractVersionTemplate" : " ^v(?<version>.+?)$" ,
7789
+ "fileMatch" : [
7790
+ " ^tools/gron/manifest.yaml$"
7791
+ ],
7792
+ "matchStrings" : [
7793
+ " version: \" ?(?<currentValue>.*?)\" ?\\ n"
7794
+ ]
7795
+ },
7774
7796
{
7775
7797
"datasourceTemplate" : " github-releases" ,
7776
7798
"depNameTemplate" : " gruntjs/grunt" ,
Original file line number Diff line number Diff line change
1
+ #syntax=docker/dockerfile:1.5.2
2
+
3
+ ARG ref=main
4
+
5
+ FROM ghcr.io/nicholasdille/docker-setup/base:${ref} AS prepare
6
+ ARG name
7
+ ARG version
8
+ RUN <<EOF
9
+ curl --silent --location --fail "https://github.com/tomnomnom/gron/releases/download/v${version}/gron-linux-${alt_arch}-${version}.tgz" \
10
+ | tar --extract --gzip --directory="${prefix}${target}/bin/" --no-same-owner
11
+
12
+ #"${prefix}${target}/bin/foo" completion bash >"${prefix}${target}/share/bash-completion/completions/foo"
13
+ #"${prefix}${target}/bin/foo" completion fish >"${prefix}${target}/share/fish/vendor_completions.d/foo.fish"
14
+ #"${prefix}${target}/bin/foo" completion zsh >"${prefix}${target}/share/zsh/vendor-completions/_foo"
15
+ EOF
Original file line number Diff line number Diff line change
1
+ name : gron
2
+ version : " 0.7.1"
3
+ check : " " # Version is set to "dev"
4
+ platforms :
5
+ - linux/amd64
6
+ - linux/arm64
7
+ tags :
8
+ - category/development
9
+ - lang/c
10
+ - type/cli
11
+ homepage : https://github.com/tomnomnom/gron
12
+ description : Some description
13
+ renovate :
14
+ datasource : github-releases
15
+ package : tomnomnom/gron
16
+ extractVersion : ^v(?<version>.+?)$
17
+ priority : low
You can’t perform that action at this time.
0 commit comments