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 bb53456 commit 2b51e8fCopy full SHA for 2b51e8f
action.yml
@@ -109,8 +109,8 @@ runs:
109
uses: actions/github-script@v8
110
with:
111
script: |
112
- const filings = JSON.parse('${{ steps.file.outputs.filings }}' || '[]');
113
- const fixings = JSON.parse('${{ steps.fix.outputs.fixings }}' || '[]');
+ const filings = ${{ steps.file.outputs.filings || '' }} || [];
+ const fixings = ${{ steps.fix.outputs.fixings || '' }} || [];
114
const fixingsByIssueUrl = fixings.reduce((acc, fixing) => {
115
if (fixing.issue && fixing.issue.url) {
116
acc[fixing.issue.url] = fixing;
0 commit comments