---
title: "XCBeautify: Supporting GitHub Actions Annotations"
url: https://daily.dev/posts/xcbeautify-supporting-github-actions-annotations-edmjzvyxj
source_url: https://tuist.dev/blog/2023/09/06/xcbeautify-github-actions
type: article
source: "\n      Tuist\n    "
published: 2026-08-23T12:23:50.106Z
updated: 2026-08-23T12:53:14.037Z
tags: ["ios", "cicd", "github-actions"]
reading_time: 2
upvotes: 0
comments: 0
language: en
---

> ## Documentation Index
> Fetch the complete documentation index at: https://daily.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# XCBeautify: Supporting GitHub Actions Annotations

**[
      Tuist
    ](https://daily.dev/sources/tuist-blog)** · 2 min read · 0 upvotes · 0 comments

## Summary

XCBeautify introduced a new GitHub Actions renderer, added via the Renderer concept in version 0.21.0. Running xcodebuild piped through xcbeautify with the --renderer github-actions flag produces workflow-command formatted output, surfacing warnings, errors, and test failures directly in the Annotations section and as inline PR feedback, potentially removing the need for tools like Danger. The Renderer abstraction also lays groundwork for supporting other CI/CD providers in the future, with the default TerminalRenderer preserving existing command-line output.

## Full article

daily.dev links to this article rather than hosting it. Read it at the original source: <https://tuist.dev/blog/2023/09/06/xcbeautify-github-actions>

## Questions this post answers

### How do I show xcodebuild warnings and errors as GitHub Actions annotations?

Pipe xcodebuild output into xcbeautify with the --renderer github-actions flag, for example: xcodebuild [flags] | xcbeautify --renderer github-actions. This uses GitHub workflow commands to surface compiler warnings, compiler errors, and test failures in the Annotations section of the run summary, plus inline feedback on pull requests, available since xcbeautify 0.21.0.

_daily.dev surfaces tooling updates like this for teams wiring up iOS CI pipelines._

### Can xcbeautify replace Danger for reporting xcodebuild results in pull requests?

Yes, xcbeautify's GitHub Actions renderer can eliminate the need for third-party tools like Danger to summarize xcodebuild output in pull requests. It formats warnings, errors, and test failures using native GitHub workflow commands, giving inline PR feedback without additional dependencies.

_Developers comparing CI tooling choices can track changes like this on daily.dev._

### What is the Renderer concept introduced in xcbeautify 0.21.0?

Renderer is a new abstraction in xcbeautify 0.21.0 that lets the tool format output differently depending on the target, starting with TerminalRenderer as the default command-line format and a new GitHub Actions renderer. It provides groundwork for adding support for other CI/CD providers in future releases.

_daily.dev helps developers keep up with incremental tool changes like new renderer support._

## Similar posts on daily.dev

- [My first GitHub Actions extension: A tool to apply Clang format to C\+\+ code](https://daily.dev/posts/my-first-github-actions-extension-a-tool-to-apply-clang-format-to-c-code-wabfq3gce) · R-bloggers · 0 upvotes · 0 comments

---

Tags: [#ios](https://daily.dev/tags/ios), [#cicd](https://daily.dev/tags/cicd), [#github-actions](https://daily.dev/tags/github-actions)

[View this post on daily.dev](https://daily.dev/posts/xcbeautify-supporting-github-actions-annotations-edmjzvyxj)
