Skip to content
Prev Previous commit
Next Next commit
fix same type in github action
  • Loading branch information
donbarbos committed Oct 24, 2025
commit 315781a09ed47ad56a40ab9ff463b1b5b28d1e6c
2 changes: 1 addition & 1 deletion .github/workflows/stubsabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
' 2>&1 | while IFS= read -r line; do
echo "$line" >&5
clean=$(echo "$line" | sed -r "s/\x1B\[[0-9;]*[mK]//g")
if [[ $clean == *"should be tested by stubsabot"* ]]; then
if [[ $clean == *"should be tested by stubtest"* ]]; then
echo "${clean%% *}" >> "$STUBS_FILE"
fi
done
Expand Down