Created
January 1, 2026 16:18
-
-
Save miguelraz/920010025b00bc44018017d5990954fb 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
| for issue_num in $(gh issue list -L 20 --label "state:needs triage" --state "closed" | awk '{print $1}'); do | |
| url="https://github.com/zed-industries/zed/issues/$issue_num" | |
| gh issue edit $issue_num --add-label "state:needs repro" &; | |
| gh issue edit $issue_num --remove-label "state:needs triage" &; | |
| /Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome $url; | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment