Last active
October 29, 2025 16:21
-
-
Save juanesech/3135ff6b4f54997dc9cb69f8eafb07b5 to your computer and use it in GitHub Desktop.
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
| #!/usr/bin/env nu | |
| def main [title_query: string, wf: string = actions.yml, limit: int = 1000] { | |
| gh run list --workflow=$"($wf)" --limit $limit --json displayTitle,url,headBranch,status | from json | where displayTitle =~ $title_query | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment