We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 309ed1c commit be47761Copy full SHA for be47761
action.yml
@@ -78,8 +78,9 @@ runs:
78
id: get_issues_from_filings
79
shell: bash
80
run: |
81
- # Get issues with 'state: open' from Filing objects
82
- echo "issues=$(echo '${{ steps.file.outputs.filings }}' | jq '[.[] | select(.issue.state == "open") | .issue]')" >> $GITHUB_OUTPUT
+ # Extract open issues from Filing objects and output as a single-line JSON array
+ issues=$(jq -c '[.[] | select(.issue.state == "open") | .issue]' <<< '${{ steps.file.outputs.filings }}')
83
+ echo "issues=$issues" >> "$GITHUB_OUTPUT"
84
- if: ${{ inputs.skip_copilot_assignment != 'true' }}
85
name: Fix
86
id: fix
0 commit comments