Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion .github/workflows/commands.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,15 @@ jobs:
- name: Read metadata
id: read-meta
run: |
source result
run_step_outcome=""
hasPatch=""
while IFS='=' read -r key value; do
case "$key" in
run_step_outcome) run_step_outcome="$value" ;;
hasPatch) hasPatch="$value" ;;
*) echo "Unexpected key: $key" >&2; exit 1 ;;
esac
done < result
echo "run_step_outcome=$run_step_outcome" >> $GITHUB_OUTPUT
echo "hasPatch=$hasPatch" >> $GITHUB_OUTPUT

Expand Down