From 348a5d248840e9132451e7ad1ebb96e43ef8f7a1 Mon Sep 17 00:00:00 2001 From: Rafaela Maria Soares da Silva Date: Tue, 21 Jan 2025 12:01:35 +0000 Subject: [PATCH] SANDBOX-944: update author in Dockerfiles (#616) * update author in Dockerfiles * requested changes --- build/Dockerfile | 4 ++-- build/Dockerfile.webhook | 4 ++-- make/test.mk | 4 ++-- openshift-ci/Dockerfile.tools | 8 ++++---- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/build/Dockerfile b/build/Dockerfile index d3c0cd40..17797ce7 100644 --- a/build/Dockerfile +++ b/build/Dockerfile @@ -1,7 +1,7 @@ FROM registry.access.redhat.com/ubi8/ubi-minimal:latest -LABEL maintainer "Devtools " -LABEL author "Devtools " +LABEL maintainer "KubeSaw " +LABEL author "KubeSaw " ENV OPERATOR=/usr/local/bin/member-operator \ USER_UID=1001 \ diff --git a/build/Dockerfile.webhook b/build/Dockerfile.webhook index 6d425ce9..aa375781 100644 --- a/build/Dockerfile.webhook +++ b/build/Dockerfile.webhook @@ -1,7 +1,7 @@ FROM registry.access.redhat.com/ubi8/ubi-minimal:latest -LABEL maintainer "Devtools " -LABEL author "Devtools " +LABEL maintainer "KubeSaw " +LABEL author "KubeSaw " ENV WEBHOOK=/usr/local/bin/member-operator-webhook \ USER_UID=1001 \ diff --git a/make/test.mk b/make/test.mk index 514c82fe..0ccd3130 100644 --- a/make/test.mk +++ b/make/test.mk @@ -110,8 +110,8 @@ ifeq ($(E2E_REPO_PATH),"") @echo "branch ref of the user's fork: \"${REMOTE_E2E_BRANCH}\" - if empty then not found" # check if the branch with the same name exists, if so then merge it with master and use the merge branch, if not then use master if [[ -n "${REMOTE_E2E_BRANCH}" ]]; then \ - git config --global user.email "devtools@redhat.com"; \ - git config --global user.name "Devtools"; \ + git config --global user.email "devsandbox@redhat.com"; \ + git config --global user.name "KubeSaw"; \ # add the user's fork as remote repo \ git --git-dir=${E2E_REPO_PATH}/.git --work-tree=${E2E_REPO_PATH} remote add external ${AUTHOR_LINK}/toolchain-e2e.git; \ # fetch the branch \ diff --git a/openshift-ci/Dockerfile.tools b/openshift-ci/Dockerfile.tools index a10befe4..731472f3 100644 --- a/openshift-ci/Dockerfile.tools +++ b/openshift-ci/Dockerfile.tools @@ -1,14 +1,14 @@ FROM registry.access.redhat.com/ubi8/ubi:latest as build-tools -LABEL maintainer "Devtools " -LABEL author "Devtools " +LABEL maintainer "KubeSaw " +LABEL author "KubeSaw " ENV LANG=en_US.utf8 \ GOPATH=/tmp/go \ GOCACHE=/tmp/.cache \ PATH=$PATH:$GOPATH/bin \ - GIT_COMMITTER_NAME=devtools \ - GIT_COMMITTER_EMAIL=devtools@redhat.com \ + GIT_COMMITTER_NAME="KubeSaw" \ + GIT_COMMITTER_EMAIL=devsandbox@redhat.com \ GOLANG_VERSION=go1.20.11 \ GOLANG_SHA256=ef79a11aa095a08772d2a69e4f152f897c4e96ee297b0dc20264b7dec2961abe