-
-
Notifications
You must be signed in to change notification settings - Fork 231
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(updatecli): add a manifest for
git-lfs
on Windows (#500)
* chore(updatecli): add a manifest for `git-lfs` on Windows * add missing EOF
- Loading branch information
1 parent
b81e9e0
commit f8ca9c1
Showing
1 changed file
with
56 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
name: Bump `git-lfs` version on Windows | ||
|
||
scms: | ||
default: | ||
kind: github | ||
spec: | ||
user: "{{ .github.user }}" | ||
email: "{{ .github.email }}" | ||
owner: "{{ .github.owner }}" | ||
repository: "{{ .github.repository }}" | ||
token: "{{ requiredEnv .github.token }}" | ||
username: "{{ .github.username }}" | ||
branch: "{{ .github.branch }}" | ||
|
||
sources: | ||
lastVersion: | ||
kind: githubrelease | ||
name: Get the latest `git-lfs` version | ||
spec: | ||
owner: git-lfs | ||
repository: git-lfs | ||
token: "{{ requiredEnv .github.token }}" | ||
username: "{{ .github.username }}" | ||
versionfilter: | ||
kind: semver | ||
|
||
targets: | ||
setGitLfsVersionWindowsNanoserver: | ||
name: Update the `git-lfs` Windows version for Windows Nanoserver | ||
kind: dockerfile | ||
spec: | ||
file: windows/nanoserver/Dockerfile | ||
instruction: | ||
keyword: ARG | ||
matcher: GIT_LFS_VERSION | ||
scmid: default | ||
setGitLfsVersionWindowsServer: | ||
name: Update the `git-lfs` Windows version for Windows Core Server | ||
kind: dockerfile | ||
spec: | ||
file: windows/windowsservercore/Dockerfile | ||
instruction: | ||
keyword: ARG | ||
matcher: GIT_LFS_VERSION | ||
scmid: default | ||
|
||
actions: | ||
default: | ||
kind: github/pullrequest | ||
title: Bump `git-lfs` version on Windows to {{ source "lastVersion" }} | ||
scmid: default | ||
spec: | ||
labels: | ||
- enhancement | ||
- git-lfs | ||
- windows |