-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Configure author for Git commit step (#2712)
- Loading branch information
1 parent
f55f4d5
commit 727cbca
Showing
2 changed files
with
33 additions
and
1 deletion.
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 |
---|---|---|
|
@@ -9,6 +9,10 @@ const ( | |
BaseRepoOwnerEnvvar = "BASE_REPO_OWNER" | ||
HeadRepoOwnerEnvvar = "HEAD_REPO_OWNER" | ||
GitHubTokenEnvvar = "GITHUB_TOKEN" | ||
CommitAuthorNameEnvvar = "COMMIT_AUTHOR_NAME" | ||
CommitAuthorEmailEnvvar = "COMMIT_AUTHOR_EMAIL" | ||
DefaultCommitAuthorName = "EKS Distro PR Bot" | ||
DefaultCommitAuthorEmail = "[email protected]" | ||
BuildToolingRepoName = "eks-anywhere-build-tooling" | ||
BuildToolingRepoURL = "https://github.com/aws/eks-anywhere-build-tooling" | ||
ReadmeFile = "README.md" | ||
|
@@ -49,6 +53,12 @@ var ( | |
BinaryName: "cmctl", | ||
Extract: true, | ||
}, | ||
"containerd/containerd": { | ||
AssetName: "containerd-%s-linux-amd64.tar.gz", | ||
BinaryName: "bin/containerd", | ||
Extract: true, | ||
TrimLeadingVersionPrefix: true, | ||
}, | ||
"fluxcd/flux2": { | ||
AssetName: "flux_%s_linux_amd64.tar.gz", | ||
BinaryName: "flux", | ||
|
@@ -76,6 +86,11 @@ var ( | |
BinaryName: "kind-linux-amd64", | ||
Extract: false, | ||
}, | ||
"opencontainers/runc": { | ||
AssetName: "runc.amd64", | ||
BinaryName: "runc.amd64", | ||
Extract: false, | ||
}, | ||
"rancher/local-path-provisioner": { | ||
AssetName: "local-path-provisioner-amd64", | ||
BinaryName: "local-path-provisioner-amd64", | ||
|
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