Skip to content

Commit 732cf99

Browse files
nshkrdotcomclaude
authored andcommitted
Add script to watch all GitHub repositories
🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
0 parents  commit 732cf99

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

watch_all_repos.sh

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#!/bin/bash
2+
3+
# Get all repo names and watch them
4+
gh repo list --limit 1000 --json name --jq '.[].name' | while read repo; do
5+
echo "Watching nshkrdotcom/$repo"
6+
gh api repos/nshkrdotcom/$repo/subscription -X PUT --input - <<< '{}'
7+
done
8+
9+
echo "Done watching all repos!"

0 commit comments

Comments
 (0)