We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f5b74a commit b0efe21Copy full SHA for b0efe21
.github/workflows/process_metadata.yml
@@ -74,7 +74,7 @@ jobs:
74
- name: 'Check metadata for workflow dispatch directives'
75
id: check-workflow-dispatch
76
run: |
77
- inputs=$(echo ${{ steps.extract-metadata.outputs.metadata }} | jq -c '.[] | select(.type | contains("workflow_dispatch")) | first')
+ inputs=$(echo '${{ steps.extract-metadata.outputs.metadata }}' | jq -c '.[] | select(.type | contains("workflow_dispatch"))')
78
name=$(echo $inputs | jq -r '.name')
79
if [ -n "$inputs" ]; then
80
echo "inputs=$inputs" >> $GITHUB_OUTPUT
0 commit comments