Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SANDBOX-944: update author in Dockerfiles #1098

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions make/ksctl.mk
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ ifneq ($(strip $(REMOTE_KSCTL_BRANCH)),)
# delete to have clear environment
rm -rf ${KSCTL_REPO_PATH}

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"
# clone
git clone --depth=1 https://github.com/kubesaw/ksctl.git ${KSCTL_REPO_PATH}
# add the user's fork as remote repo
Expand Down
8 changes: 4 additions & 4 deletions openshift-ci/Dockerfile.tools
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
FROM registry.access.redhat.com/ubi8/ubi:latest as build-tools

LABEL maintainer "Devtools <devtools@redhat.com>"
LABEL author "Devtools <devtools@redhat.com>"
LABEL maintainer "KubeSaw <devsandbox@redhat.com>"
LABEL author "KubeSaw <devsandbox@redhat.com>"

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

Expand Down
4 changes: 2 additions & 2 deletions scripts/ci/manage-operator.sh
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,8 @@ Note: If you have already deleted one of the branches from your fork, it can tak
exit 1
fi

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"

echo -e "repository: ${AUTHOR_LINK}/${REPOSITORY_NAME} \nbranch: ${BRANCH_NAME}" > ${WAS_ALREADY_PAIRED_FILE}
# add the user's fork as remote repo
Expand Down
Loading