We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d7c708 commit 047392cCopy full SHA for 047392c
.github/workflows/triage-issue.yml
@@ -56,9 +56,10 @@ jobs:
56
env:
57
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
58
ISSUE_NUMBER: ${{ github.event.issue.number }}
59
+ LABELS: ${{ steps.run_script.outputs.labels }}
60
run: |
61
# Convert comma-separated labels to gh command arguments
- IFS=',' read -ra ADDR <<< "${{ steps.run_script.outputs.labels }}"
62
+ IFS=',' read -ra ADDR <<< "$LABELS"
63
priority_added=false
64
for i in "${ADDR[@]}"; do
65
# Trim whitespace
0 commit comments