Last active
January 28, 2026 16:16
-
-
Save cwfitzgerald/ece29363b36f53ebf4a0d6c9531ee858 to your computer and use it in GitHub Desktop.
Commands for wgpu Meeting
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
| gh issue list --repo gfx-rs/wgpu -L 1000 --search $'created:>=( ( (date now) - 8day ) | format date "%Y-%m-%d" )' --json number,title,url --jq '.[] | "* [#\(.number)](\(.url)) \(.title) "' |
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
| gh pr list --repo gfx-rs/wgpu -L 1000 --search "is:open draft:false sort:created-asc" --json number,author,title,assignees,url --jq '.[] | "* [#\(.number)](\(.url)) \(.title) (By \((if .author.name == null then (.author.login) else (.author.name) end)); \((if (.assignees|length)==0 then "Unassigned" else "Assigned to " + (.assignees|map("@"+.login)|join(" ")) end)))"' | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Note for later users, these commands are written to be executed in nushell - installation instructions are here https://www.nushell.sh/book/installation.html.