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

update publishing-bot issue repo to k/sig-release #3198

Merged
merged 1 commit into from
Aug 16, 2023
Merged
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
3 changes: 2 additions & 1 deletion pkg/release/release.go
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ const (
ArchivePath = "archive"

// Publishing bot issue repository
PubBotRepoOrg = "k8s-release-robot"
PubBotRepoOrg = "kubernetes"
PubBotRepoName = "sig-release"

DockerHubEnvKey = "DOCKERHUB_TOKEN" // Env var containing the docker key
Expand Down Expand Up @@ -475,6 +475,7 @@ func CreatePubBotBranchIssue(branchName string) error {
issueBody += "Please update the publishing-bot's configuration to also publish this new branch.\n\n"
issueBody += "/sig release\n"
issueBody += "/area release-eng\n"
issueBody += "/assign @kubernetes/release-managers\n"
issueBody += "/milestone v" + strings.TrimPrefix(branchName, "release-") + "\n"

// Create the issue on GitHub
Expand Down