Last active
December 4, 2025 20:51
-
-
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