Skip to content

Commit

Permalink
Review changes
Browse files Browse the repository at this point in the history
  • Loading branch information
typeid committed Feb 8, 2024
1 parent cab1e55 commit 4e80ffe
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docs/release/release-tasks.md
Original file line number Diff line number Diff line change
Expand Up @@ -341,9 +341,9 @@ The goal of this task is to keep the CAPI community updated on recent PRs that h
```bash
make release-weekly-update-tool
```
2. Generate the weekly update with the following command:
2. Generate the weekly update with the following command for desired branches:
```bash
./bin/weekly --since YYYY-MM-DD --until YYYY-MM-DD --branch release-1.x
./bin/weekly --since <YYYY-MM-DD> --until <YYYY-MM-DD> --branch <branch_name>
```
**Note:** the `GITHUB_TOKEN` environment variable can be set to prevent/reduce GitHub rate limiting issues.
3. Paste the output into a new Slack message in the [`#cluster-api`](https://kubernetes.slack.com/archives/C8TSNPY4T) channel. Currently, we post separate messages in a thread for the branch `main` - which corresponds to the active milestone - as well as the two most recent release branches (e.g. `release-1.6` and `release-1.5`).
Expand Down
2 changes: 1 addition & 1 deletion hack/tools/release/weekly/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ func run() int {
fmt.Println("All merged PRs can be viewed in GitHub:")
fmt.Println("https://github.com/kubernetes-sigs/cluster-api/pulls?q=is%3Apr+closed%3A" + sinceTime.Format(timeLayout) + ".." + untilTime.Format(timeLayout) + "+is%3Amerged+base%3A" + branch + "+\n")

fmt.Println("_Thanks to all our contributors!_ 😊")
fmt.Println("*Thanks to all our contributors!* 😊")
fmt.Println("/Your friendly comms release team")

return 0
Expand Down

0 comments on commit 4e80ffe

Please sign in to comment.