Skip to content

Instantly share code, notes, and snippets.

@miguelraz
Created January 1, 2026 16:18
Show Gist options
  • Select an option

  • Save miguelraz/920010025b00bc44018017d5990954fb to your computer and use it in GitHub Desktop.

Select an option

Save miguelraz/920010025b00bc44018017d5990954fb to your computer and use it in GitHub Desktop.
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