tractatus/.github
TheFlow e04d9f7d88 fix: resolve YAML syntax error in sync-public-docs workflow
Fix GitHub Actions workflow syntax error on line 127 (actually line 137).

**Problem**: GitHub Actions expression with || operator inside echo command:
  echo "- Security Validation: ${{ steps.validation.outcome || 'skipped' }}"

**Solution**: Move expression to shell variable with bash conditional:
  VALIDATION_STATUS="${{ steps.validation.outcome }}"
  if [ -z "$VALIDATION_STATUS" ]; then
    VALIDATION_STATUS="skipped"
  fi

**Additional fixes**:
- Add 2>/dev/null to git diff commands to suppress errors
- Use standard bash syntax for conditional logic

This resolves the workflow validation error preventing GitHub Actions from running.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-10 06:29:24 +13:00
..
workflows fix: resolve YAML syntax error in sync-public-docs workflow 2025-10-10 06:29:24 +13:00