chore: fix labeler script

Andrey Nering created

Change summary

scripts/run-labeler.sh | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)

Detailed changes

scripts/run-issue-labeler.sh → scripts/run-labeler.sh 🔗

@@ -2,11 +2,11 @@ ISSUES=$(gh issue list --state=all --limit=1000 --json "number" -t '{{range .}}{
 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"
+  echo "Dispatching labeler.yml for $issue"
+  gh workflow run 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"
+  echo "Dispatching labeler.yml for $pr"
+  gh workflow run labeler.yml -f issue-number="$pr"
 done