-
Notifications
You must be signed in to change notification settings - Fork 4
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
fix(upgrade): skip if already on latest version #35
Merged
Conversation
This file contains 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
benelan
pushed a commit
that referenced
this pull request
Jul 22, 2024
🤖 I have created a release *beep* *boop* --- ## [0.14.0](v0.13.0...v0.14.0) (2024-07-22) ### Features * Add `status` command that prints GitHub's service [status](https://www.githubstatus.com/) summary ([4ac7a48](4ac7a48)) * Add upgrade command to pin the latest version ([4ac127c](4ac127c)) * **config:** Increase GH_FZF_DEFAULT_LIMIT to 75 ([b442dbd](b442dbd)) * Display GitHub service alerts in the preview-label during incidents ([4ac7a48](4ac7a48)) * **pr:** Add column showing the diff shortstat ([26c1d50](26c1d50)) * **run:** Add `alt-w` keybind to filter by selected workflow ([48a29dd](48a29dd)) * **ui:** Add second layout to `alt-P` preview toggling ([d77d364](d77d364)) * **ui:** Display command in fzf prompt ([66bbf1e](66bbf1e)) * **workflow:** Add `ctrl-y` keybinding to copy file url ([2f478f2](2f478f2)) * **workflow:** Add custom list formatting ([0a57814](0a57814)) ### Bug Fixes * **linux:** Check XDG_SESSION_TYPE when determining copy command ([f743c80](f743c80)) * **ui:** Pad preview columns to prevent word wrap weirdness ([79cbd4b](79cbd4b)) * **upgrade:** Skip if already on latest version ([#35](#35)) ([e944671](e944671)) * **util:** Execute notify-run-completed as a background process ([5a3469c](5a3469c)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
benelan
added a commit
that referenced
this pull request
Jul 22, 2024
* origin/main: chore(main): release 0.14.0 (#30) docs(readme): update info about upgrading fix(ui): pad preview columns to prevent word wrap weirdness fix(upgrade): skip if already on latest version (#35) docs(status): add command to help message feat: add status command, display status during incidents (#34)
benelan
added a commit
that referenced
this pull request
Jul 22, 2024
* origin/main: chore(main): release 0.14.0 (#30) docs(readme): update info about upgrading fix(ui): pad preview columns to prevent word wrap weirdness fix(upgrade): skip if already on latest version (#35) docs(status): add command to help message feat: add status command, display status during incidents (#34)
benelan
added a commit
that referenced
this pull request
Jul 22, 2024
* origin/main: chore(main): release 0.14.0 (#30) docs(readme): update info about upgrading fix(ui): pad preview columns to prevent word wrap weirdness fix(upgrade): skip if already on latest version (#35) docs(status): add command to help message feat: add status command, display status during incidents (#34) feat(workflow): add `ctrl-y` keybinding to copy file url feat(workflow): add custom list formatting refactor(ui): use the singular form of command names feat(ui): display command in fzf prompt
benelan
added a commit
that referenced
this pull request
Jul 22, 2024
…-flag * origin/main: chore(main): release 0.14.0 (#30) docs(readme): update info about upgrading fix(ui): pad preview columns to prevent word wrap weirdness fix(upgrade): skip if already on latest version (#35) docs(status): add command to help message feat: add status command, display status during incidents (#34)
benelan
added a commit
that referenced
this pull request
Jul 22, 2024
* origin/main: chore(main): release 0.14.0 (#30) docs(readme): update info about upgrading fix(ui): pad preview columns to prevent word wrap weirdness fix(upgrade): skip if already on latest version (#35) docs(status): add command to help message feat: add status command, display status during incidents (#34)
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.
Fix a potential problem where the upgrade command could actually downgrade the version. Running
gh extension install --force benelan/gh-fzf
installs the latest from the default branch. Whereasgh fzf upgrade
installs the most recent release, which is usually behindmain
.