Skip to content

Commit e91522e

Browse files
lindseywildCopilot
andcommitted
Remove unnecessary fallbacks for file output env vars
GitHub Actions already provides an empty string for unset outputs, and the node script already handles empty/missing files gracefully. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 0d870fd commit e91522e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,8 +141,8 @@ runs:
141141
id: results
142142
shell: bash
143143
env:
144-
FILINGS_FILE: ${{ steps.file.outputs.filings_file || '' }}
145-
FIXINGS_FILE: ${{ steps.fix.outputs.fixings_file || '' }}
144+
FILINGS_FILE: ${{ steps.file.outputs.filings_file }}
145+
FIXINGS_FILE: ${{ steps.fix.outputs.fixings_file }}
146146
run: |
147147
node << 'NODE_SCRIPT'
148148
const fs = require('fs');

0 commit comments

Comments
 (0)