We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e113fd commit 248d304Copy full SHA for 248d304
1 file changed
.github/workflows/feature-request-enhance.yml
@@ -193,8 +193,15 @@ jobs:
193
env:
194
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
195
ISSUE_NUMBER: ${{ github.event.issue.number }}
196
-
197
run: |
+ set -e # Exit on error
198
+
199
+ # Ensure jq is available (should be pre-installed in ubuntu-latest)
200
+ if ! command -v jq &> /dev/null; then
201
+ echo "⚠️ jq not found, installing..."
202
+ sudo apt-get update && sudo apt-get install -y jq
203
+ fi
204
205
# Read enhanced task from JSON output to avoid shell quoting issues
206
TASK_JSON="${{ needs.preprocess.outputs.task_json }}"
207
if [ -n "$TASK_JSON" ] && [ "$TASK_JSON" != "null" ]; then
0 commit comments