Compare commits

..

No commits in common. "4bc78716ee7ba16891dd8d4b1f090d84aace5f5e" and "2d94c8b5615337eb879b769a5fba6a992fe5476d" have entirely different histories.

2 changed files with 8 additions and 19 deletions

View File

@ -5,26 +5,15 @@ Nixpkgs PR status checker.
## Example ## Example
```console ```console
$ nixprstatus pr 345501 $ nixprstatus 345501
ktailctl: 0.18.0 -> 0.18.1
✅ merged
✅ master ✅ master
nixos-unstable-small nixos-unstable-small
nixos-unstable nixos-unstable
❌ nixos-24.05 ❌ nixos-24.05
$ nixprstatus --help
Usage: python -m nixprstatus [OPTIONS] COMMAND [ARGS]...
Options:
--install-completion Install completion for the current shell.
--show-completion Show completion for the current shell, to copy it or
customize the installation.
--help Show this message and exit.
Commands:
pr Get merge status of pull request.
since Return the count of commits that has happened between the two refs.
``` ```
## TODO
* Support backported commits
* JSON output

View File

@ -21,7 +21,7 @@ def pr(
list[str] | None, typer.Option(help="Check specific branch") list[str] | None, typer.Option(help="Check specific branch")
] = None, ] = None,
): ):
"""Get merge status of pull request.""" """Get status of pull request"""
console = Console() console = Console()
if branches: if branches: