mirror of
https://github.com/charmbracelet/crush.git
synced 2025-08-02 05:20:46 +03:00
13 lines
498 B
Bash
Executable File
13 lines
498 B
Bash
Executable File
ISSUES=$(gh issue list --state=all --limit=1000 --json "number" -t '{{range .}}{{printf "%.0f\n" .number}}{{end}}')
|
|
PRS=$(gh pr list --state=all --limit=1000 --json "number" -t '{{range .}}{{printf "%.0f\n" .number}}{{end}}')
|
|
|
|
for issue in $ISSUES; do
|
|
echo "Dispatching issue-labeler.yml for $issue"
|
|
gh workflow run issue-labeler.yml -f issue-number="$issue"
|
|
done
|
|
|
|
for pr in $PRS; do
|
|
echo "Dispatching issue-labeler.yml for $pr"
|
|
gh workflow run issue-labeler.yml -f issue-number="$pr"
|
|
done
|