Impl ghrcooldown latest command#9
Merged
Merged
Conversation
ffd3314 to
c38c654
Compare
Contributor
There was a problem hiding this comment.
Pull request overview
Adds a ghrcooldown CLI (in addition to the existing library) and implements the ghrcooldown latest command to print the latest release tag while respecting a cooldown period.
Changes:
- Introduce
cmd/ghrcooldownCLI entrypoint usingurfave/cli/v3with alatestsubcommand. - Add command wiring (
CommandLatest) plus parsing helpers and new CLI-focused tests/utilities. - Update docs/build tooling for the new CLI and add a shared
Dayduration constant.
Reviewed changes
Copilot reviewed 11 out of 13 changed files in this pull request and generated 7 comments.
Show a summary per file
| File | Description |
|---|---|
| testutil_test.go | Removes the old days() helper now that Day is a shared constant. |
| client.go | Adds Day constant used for cooldown calculations. |
| client_test.go | Updates tests to use ghrcooldown.Day instead of the removed helper. |
| cmd/ghrcooldown/main.go | Adds the CLI app, flags, and ParseRepositoryPath. |
| cmd/ghrcooldown/commands.go | Implements CommandLatest that calls the library client and prints the tag. |
| cmd/ghrcooldown/main_test.go | Adds unit tests for ParseRepositoryPath. |
| cmd/ghrcooldown/commands_test.go | Adds a CLI-command-level test for CommandLatest. |
| cmd/ghrcooldown/testutil_test.go | Adds CLI-test helpers (readTestData, captureStdout). |
| go.mod / go.sum | Adds github.com/urfave/cli/v3 dependency. |
| README.md | Documents CLI usage and help output; reframes project as CLI + library. |
| Makefile | Changes default target to build the CLI binary and inject revision via ldflags. |
| .gitignore | Ignores bin/ output directory. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Contributor
There was a problem hiding this comment.
Pull request overview
Copilot reviewed 11 out of 13 changed files in this pull request and generated 3 comments.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
TODO
ref. #10