Skip to content

chore: Implement automated screenshot diff reporting#182

Merged
komodgn merged 4 commits intodevelopfrom
infra/screenshot-comment
Apr 20, 2026
Merged

chore: Implement automated screenshot diff reporting#182
komodgn merged 4 commits intodevelopfrom
infra/screenshot-comment

Conversation

@komodgn
Copy link
Copy Markdown
Owner

@komodgn komodgn commented Apr 20, 2026

Related issue

Work Description ✏️

Note

The workflow_run based reporting bot is not yet registered in the develop branch, preventing it from being triggered.

Screenshot 📸

Summary by CodeRabbit

Release Notes

  • New Features
    • Automated screenshot comparison testing now runs on pull requests to detect visual changes
    • Screenshot diff reports are automatically generated and posted as pull request comments for easy review
    • Comparison reports are automatically cleaned up after 30 days to maintain repository organization

@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai Bot commented Apr 20, 2026

Warning

Rate limit exceeded

@komodgn has exceeded the limit for the number of commits that can be reviewed per hour. Please wait 2 minutes and 54 seconds before requesting another review.

Your organization is not enrolled in usage-based pricing. Contact your admin to enable usage-based pricing to continue reviews beyond the rate limit, or try again in 2 minutes and 54 seconds.

⌛ How to resolve this issue?

After the wait time has elapsed, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

We recommend that you space out your commits to avoid hitting the rate limit.

🚦 How do rate limits work?

CodeRabbit enforces hourly rate limits for each developer per organization.

Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout.

Please see our FAQ for further information.

ℹ️ Review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro

Run ID: a44cef39-5167-44bf-bc71-f5944c097da7

📥 Commits

Reviewing files that changed from the base of the PR and between 525f6d1 and 3b7ef55.

📒 Files selected for processing (1)
  • .github/workflows/unit-test.yml
📝 Walkthrough

Walkthrough

This pull request introduces automated screenshot diff reporting for visual regression testing. It adds three new GitHub Actions workflows that capture screenshot comparisons, generate diff artifacts, and post results as PR comments, along with a Gradle property enabling the comparison mode.

Changes

Cohort / File(s) Summary
GitHub Actions Workflows
.github/workflows/screenshot-comparison.yml, .github/workflows/screenshot-comparison-comment.yml
New workflows for capturing Roborazzi screenshot diffs on PR events and automating comment generation with diff reports via artifact processing and branch management.
Workflow Configuration
.github/workflows/unit-test.yml
Enhanced to capture and persist PR number in artifacts for downstream workflow consumption.
Build Configuration
gradle.properties
Added Roborazzi comparison mode flag roborazzi.test.compare=true to enable screenshot diff generation.

Estimated code review effort

🎯 2 (Simple) | ⏱️ ~12 minutes

Possibly related PRs

  • Infra/ci refactoring #177: Introduces the local composite Android setup action and Roborazzi artifact flow patterns reused by the new screenshot-comparison and unit-test workflows.
  • Chore/#140 #141: Adds Roborazzi plugin and testing module; this PR extends that foundation with automated comparison workflows and Gradle configuration.

Poem

🐰 Hop, click, compare!
Screenshots dance through the CI air,
Diffs bloom on branches green,
The finest regression test scene! 🎨✨

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Title check ✅ Passed The title accurately summarizes the main change: implementing automated screenshot diff reporting through new GitHub Actions workflows and configuration.
Linked Issues check ✅ Passed The PR successfully implements all coding requirements: integrates compareRoborazziDebug task into pipeline, automates screenshot diff reporting via workflows, and adds necessary configuration.
Out of Scope Changes check ✅ Passed All changes are scoped to automated screenshot diff reporting: new workflows, configuration, and artifact handling. No unrelated modifications detected.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch infra/screenshot-comment

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

Copy link
Copy Markdown
Contributor

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 5

🧹 Nitpick comments (1)
.github/workflows/screenshot-comparison-comment.yml (1)

63-67: Fragile shell patterns in the report generator.

  • for file in $(ls *.png | grep _compare.png) parses ls and word-splits on whitespace — any PNG name containing spaces will break the loop, and if no _compare.png files exist, ls *.png emits an error and the step fails (remember this step only runs on env.exists == 'true', i.e., when some PNGs were pushed, which may not include any _compare.png).
  • DISPLAY_NAME=$(echo $file | sed -r 's/(.{20})/\1<br>/g') is unquoted.

Prefer a glob with nullglob:

shopt -s nullglob
for file in *_compare.png; do
  URL="https://github.com/${REPO}/blob/${BRANCH}/${file}?raw=true"
  DISPLAY_NAME=$(printf '%s' "$file" | sed -r 's/(.{20})/\1<br>/g')
  echo "| $DISPLAY_NAME | ![]($URL) |" >> "$GITHUB_OUTPUT"
done
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In @.github/workflows/screenshot-comparison-comment.yml around lines 63 - 67,
Replace the fragile ls+grep pattern and unquoted expansions with a
nullglob-aware glob loop: enable shopt -s nullglob, iterate with for file in
*_compare.png; do, build URL using the existing REPO/BRANCH variables, generate
DISPLAY_NAME with printf '%s' "$file" piped to sed, and always quote expansions
when writing to the output (e.g. echo "| $DISPLAY_NAME | ![]($URL) |" >>
"$GITHUB_OUTPUT") so filenames with spaces and the case of zero matches are
handled safely.
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Inline comments:
In @.github/workflows/screenshot-comparison-comment.yml:
- Around line 25-26: The step id get-pull-request-number reads
attacker-controllable diff-reports/pr/NR and uses it as pull_request_number for
peter-evans/find-comment and create-or-update-comment; sanitize and validate
that the artifact contains only a single numeric PR id (strip non-digits,
truncate to a reasonable length, ensure non-empty and single-line) and fail the
job if validation fails so an invalid or multi-line payload cannot be passed to
the actions as issue-number.
- Around line 88-100: The cleanup step fails to see remote companion_* branches
because actions/checkout@v4 uses fetch-depth: 1; update the workflow so the
checkout uses fetch-depth: 0 or explicitly fetch the companion refs before
running the loop (e.g., run a git fetch --prune origin
'+refs/heads/companion_*:refs/remotes/origin/companion_*'), or replace the loop
with GitHub REST/gh API calls to list and delete branches; also enable safer
shell settings (set -euo pipefail) at the top of the step and ensure the
arithmetic and variables are quoted (e.g., quote $((now_timestamp -
last_commit_date_timestamp)) and guard empty last_commit_date_timestamp) so a
missing ref won't break the loop.
- Around line 28-48: The current Push to Companion Branch step flattens PNGs
(find ... -exec cp {} . \;) causing filename collisions and only writes
exists=true inside the git status check so re-runs with no new commit won't
refresh/clear stale comments; update the step that sets BRANCH_NAME and runs git
checkout --orphan to copy files using preserved paths (use cp --parents or
module-prefixed renaming when running find diff-reports ...) so files aren’t
overwritten, and change the existence logic so exists=true is set whenever the
companion branch contains any diffs (e.g., after copying, check for any *.png in
the working tree or check if the branch already existed and contains files) and
write echo "exists=true" >> "$GITHUB_ENV" in both the "new commit created" and
"no new commit but branch contains files" paths so downstream steps always know
when a companion branch with diffs exists.
- Around line 50-68: The generate_report step currently injects untrusted
github.event.workflow_run.head_branch directly into the shell via
BRANCH="companion_${{ github.event.workflow_run.head_branch }}", which enables
command injection; move the branch construction into the step's env mapping
(e.g., set an env variable like BRANCH: "companion_${{
github.event.workflow_run.head_branch }}") and remove direct interpolation from
the run block, then reference $BRANCH inside the run script; update the step
with id generate_report to use env: BRANCH and use $BRANCH in the loop so the
branch value is passed safely to the shell.

In @.github/workflows/screenshot-comparison.yml:
- Around line 43-52: The workflow should detect when the download artifact step
fails and skip or change behavior of the compare/upload steps: add an id to the
"Download Base Screenshot" step (e.g., id: download_base) and change the
following "Run Comparison" (and any upload/report steps) to run only when
steps.download_base.outcome == 'success' (or post a clear "no baseline
available" message when outcome != 'success'); reference the "Download Base
Screenshot" step id and the Gradle task compareRoborazziDebug to gate or alter
downstream steps accordingly so the compare is not executed against an empty
baseline.

---

Nitpick comments:
In @.github/workflows/screenshot-comparison-comment.yml:
- Around line 63-67: Replace the fragile ls+grep pattern and unquoted expansions
with a nullglob-aware glob loop: enable shopt -s nullglob, iterate with for file
in *_compare.png; do, build URL using the existing REPO/BRANCH variables,
generate DISPLAY_NAME with printf '%s' "$file" piped to sed, and always quote
expansions when writing to the output (e.g. echo "| $DISPLAY_NAME | ![]($URL) |"
>> "$GITHUB_OUTPUT") so filenames with spaces and the case of zero matches are
handled safely.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro

Run ID: 99681bcc-2cfc-4a5d-849d-791ac2a17b7e

📥 Commits

Reviewing files that changed from the base of the PR and between 9bec3f6 and 525f6d1.

📒 Files selected for processing (4)
  • .github/workflows/screenshot-comparison-comment.yml
  • .github/workflows/screenshot-comparison.yml
  • .github/workflows/unit-test.yml
  • gradle.properties

Comment on lines +25 to +26
- id: get-pull-request-number
run: echo "pull_request_number=$(cat diff-reports/pr/NR)" >> "$GITHUB_OUTPUT"
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟠 Major

Validate pull_request_number read from the untrusted artifact.

diff-reports/pr/NR originates from the PR-triggered screenshot-comparison workflow's artifact, which is attacker-controllable content in the workflow_run threat model. Its value is then passed to peter-evans/find-comment and peter-evans/create-or-update-comment as issue-number (Lines 75, 84). A non-numeric or multi-line payload could cause the bot to comment on an arbitrary issue/PR in the repo, or fail in non-obvious ways.

Sanitize before use, e.g.:

NR=$(tr -cd '0-9' < diff-reports/pr/NR | head -c 10)
[ -n "$NR" ] || { echo "Invalid PR number"; exit 1; }
echo "pull_request_number=$NR" >> "$GITHUB_OUTPUT"
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In @.github/workflows/screenshot-comparison-comment.yml around lines 25 - 26,
The step id get-pull-request-number reads attacker-controllable
diff-reports/pr/NR and uses it as pull_request_number for
peter-evans/find-comment and create-or-update-comment; sanitize and validate
that the artifact contains only a single numeric PR id (strip non-digits,
truncate to a reasonable length, ensure non-empty and single-line) and fail the
job if validation fails so an invalid or multi-line payload cannot be passed to
the actions as issue-number.

Comment on lines +28 to +48
- name: Checkout Default Branch
uses: actions/checkout@v4
with:
ref: ${{ github.event.repository.default_branch }}

- name: Push to Companion Branch
env:
BRANCH_NAME: companion_${{ github.event.workflow_run.head_branch }}
run: |
git checkout --orphan "$BRANCH_NAME"
git rm -rf .
find diff-reports -type f -name "*.png" -exec cp {} . \;

if [ -n "$(git status --porcelain)" ]; then
git config --global user.name "ScreenshotBot"
git config --global user.email "bot@github.com"
git add .
git commit -m "Add screenshot diffs"
git push origin "$BRANCH_NAME" -f
echo "exists=true" >> "$GITHUB_ENV"
fi
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

Companion-branch push step has two correctness gaps.

  1. Filename collisions on flatten. find diff-reports -type f -name "*.png" -exec cp {} . \; flattens all PNGs from every module into the branch root. Different feature modules frequently share snapshot names (e.g., HomeScreen_compare.png), so later cp calls silently overwrite earlier ones and the PR comment will show incomplete diffs. Prefer cp --parents (preserving module paths) or a module-prefixed rename.
  2. exists=true only set on subsequent runs. The flag is only written inside if [ -n "$(git status --porcelain)" ]. On the first push to a brand-new companion branch, git status --porcelain will correctly be non-empty, so that case is fine — but if someone re-runs with identical diffs the subsequent steps are skipped and the existing stale comment is never refreshed/cleaned up. Consider also handling the "no changes, branch already exists" path (e.g., still regenerate the comment from the existing branch contents, or explicitly clear the bot comment when there are no diffs).
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In @.github/workflows/screenshot-comparison-comment.yml around lines 28 - 48,
The current Push to Companion Branch step flattens PNGs (find ... -exec cp {} .
\;) causing filename collisions and only writes exists=true inside the git
status check so re-runs with no new commit won't refresh/clear stale comments;
update the step that sets BRANCH_NAME and runs git checkout --orphan to copy
files using preserved paths (use cp --parents or module-prefixed renaming when
running find diff-reports ...) so files aren’t overwritten, and change the
existence logic so exists=true is set whenever the companion branch contains any
diffs (e.g., after copying, check for any *.png in the working tree or check if
the branch already existed and contains files) and write echo "exists=true" >>
"$GITHUB_ENV" in both the "new commit created" and "no new commit but branch
contains files" paths so downstream steps always know when a companion branch
with diffs exists.

Comment on lines +50 to +68
- name: Generate Report Body
if: env.exists == 'true'
id: generate_report
run: |
BRANCH="companion_${{ github.event.workflow_run.head_branch }}"
REPO="${{ github.repository }}"

echo "REPORT_BODY<<EOF" >> $GITHUB_OUTPUT
echo "### Roborazzi Snapshot Diff Report" >> $GITHUB_OUTPUT
echo "" >> $GITHUB_OUTPUT
echo "| File Name | Comparison |" >> $GITHUB_OUTPUT
echo "|---|---|" >> $GITHUB_OUTPUT

for file in $(ls *.png | grep _compare.png); do
URL="https://github.com/${REPO}/blob/${BRANCH}/${file}?raw=true"
DISPLAY_NAME=$(echo $file | sed -r 's/(.{20})/\1<br>/g')
echo "| $DISPLAY_NAME | ![]($URL) |" >> $GITHUB_OUTPUT
done
echo "EOF" >> $GITHUB_OUTPUT
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🔴 Critical

🧩 Analysis chain

🌐 Web query:

GitHub Actions workflow_run script injection head_branch security

💡 Result:

GitHub Actions workflows triggered by the workflow_run event carry significant security risks, particularly for script injection vulnerabilities involving potentially untrusted data like head_branch. Official GitHub documentation warns that running untrusted code on workflow_run can lead to cache poisoning, unintended write access, and secret exposure. The workflow_run event provides access to the triggering workflow's details via github.event.workflow_run, including fields like head_branch, head_sha, event (e.g., 'pull_request'), ref, and head_repository. If the triggering workflow was executed from a pull request (especially from a fork via pull_request trigger), head_branch reflects the PR's source branch, which attackers can control to inject malicious payloads (e.g., branch names like zzz";echo${IFS}"hello";# or fooidbar). Script injection occurs when expressions like ${{ github.event.workflow_run.head_branch }} are interpolated directly into run: steps without sanitization. GitHub evaluates ${{ }} expressions before shell execution, substituting untrusted values into scripts, enabling command injection. This is exacerbated in privileged workflow_run workflows (with secrets/write permissions) triggered by unprivileged ones compromised via PRs. Examples from GitHub Security Lab and advisories (e.g., GHSL-2024-326) show branch name injection in workflows, analogous to head_branch. Tools like OSS-F Scorecard flag workflow_run usage due to chaining risks allowing PRs to trigger privileged execution. Mitigations from GitHub docs: - Treat github.event.* (especially ending in ref, head_ref, head_branch) as untrusted. - Use env: for intermediate variables: env: BRANCH: ${{ github.event.workflow_run.head_branch }} then run: echo "$BRANCH". - Prefer JavaScript actions for processing. - Add guards: if: github.event_name != 'pull_request' && github.repository == github.event.workflow_run.head_repository.full_name. - Pin branches: to trusted ones, limit permissions: { contents: read }. - Use branch filters and verify event origin. No specific CVE for workflow_run.head_branch, but pattern matches documented script injection risks in privileged triggers.

Citations:


🏁 Script executed:

# Locate the workflow file
git ls-files | grep -E '\.github/workflows.*screenshot.*\.yml'

Repository: komodgn/meta-android

Length of output: 159


🏁 Script executed:

cat -n .github/workflows/screenshot-comparison-comment.yml | head -80

Repository: komodgn/meta-android

Length of output: 3374


Script injection vulnerability: workflow_run.head_branch interpolated directly into shell at line 54.

BRANCH="companion_${{ github.event.workflow_run.head_branch }}" expands untrusted branch names directly into the bash script. Since this workflow runs with contents: write and pull-requests: write, a branch name crafted with shell metacharacters (valid git refs allow many characters like ;, $(), etc.) executes arbitrary commands with elevated permissions. The same step block already demonstrates the correct mitigation at lines 34–37, using an env: variable to safely pass the value. Apply the same pattern here:

Fix
      - name: Generate Report Body
        if: env.exists == 'true'
        id: generate_report
+       env:
+         HEAD_BRANCH: ${{ github.event.workflow_run.head_branch }}
+         REPO: ${{ github.repository }}
        run: |
-         BRANCH="companion_${{ github.event.workflow_run.head_branch }}"
-         REPO="${{ github.repository }}"
+         BRANCH="companion_${HEAD_BRANCH}"
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In @.github/workflows/screenshot-comparison-comment.yml around lines 50 - 68,
The generate_report step currently injects untrusted
github.event.workflow_run.head_branch directly into the shell via
BRANCH="companion_${{ github.event.workflow_run.head_branch }}", which enables
command injection; move the branch construction into the step's env mapping
(e.g., set an env variable like BRANCH: "companion_${{
github.event.workflow_run.head_branch }}") and remove direct interpolation from
the run block, then reference $BRANCH inside the run script; update the step
with id generate_report to use env: BRANCH and use $BRANCH in the loop so the
branch value is passed safely to the shell.

Comment on lines +88 to +100
- name: Cleanup outdated companion branches
shell: bash
run: |
git branch -r --format="%(refname:lstrip=3)" | grep companion_ | while read -r branch; do
last_commit_date_timestamp=$(git log -1 --format=%ct "origin/$branch")
now_timestamp=$(date +%s)

# 30 days
if [ $((now_timestamp - last_commit_date_timestamp)) -gt 2592000 ]; then
echo "Deleting outdated branch: $branch"
git push origin --delete "$branch"
fi
done
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

Cleanup step won't see remote branches due to shallow checkout.

actions/checkout@v4 defaults to fetch-depth: 1 and fetches only the checked-out ref, so git branch -r in this step typically lists just origin/<default_branch> — no companion_* refs are present, and git log -1 origin/$branch would fail for any it did find. The 30-day cleanup is effectively a no-op.

Either set fetch-depth: 0 on the checkout at Line 29 (and ensure remote branches are fetched, e.g., add git fetch --prune origin '+refs/heads/companion_*:refs/remotes/origin/companion_*' before this loop), or implement the cleanup via the GitHub REST API (gh api repos/{owner}/{repo}/branches + gh api -X DELETE .../git/refs/heads/...) which doesn't depend on local refs.

Also consider adding set -euo pipefail and quoting $((now_timestamp - last_commit_date_timestamp)) guards so a single bad ref doesn't abort the loop.

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In @.github/workflows/screenshot-comparison-comment.yml around lines 88 - 100,
The cleanup step fails to see remote companion_* branches because
actions/checkout@v4 uses fetch-depth: 1; update the workflow so the checkout
uses fetch-depth: 0 or explicitly fetch the companion refs before running the
loop (e.g., run a git fetch --prune origin
'+refs/heads/companion_*:refs/remotes/origin/companion_*'), or replace the loop
with GitHub REST/gh API calls to list and delete branches; also enable safer
shell settings (set -euo pipefail) at the top of the step and ensure the
arithmetic and variables are quoted (e.g., quote $((now_timestamp -
last_commit_date_timestamp)) and guard empty last_commit_date_timestamp) so a
missing ref won't break the loop.

Comment on lines +43 to +52
- name: Download Base Screenshot
uses: dawidd6/action-download-artifact@v3
continue-on-error: true
with:
name: test-reports
workflow: unit-test.yml
commit: ${{ steps.get_base_branch_head.outputs.sha }}

- name: Run Comparison
run: ./gradlew compareRoborazziDebug --stacktrace
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

Handle missing base-branch artifact explicitly.

Download Base Screenshot is marked continue-on-error: true, so when the base branch has no test-reports artifact yet (e.g., first run after this PR merges, retention expired, or base unit-test was skipped via skip-ci), the next step still runs ./gradlew compareRoborazziDebug against an empty baseline. Depending on Roborazzi's behavior this will either fail the job or silently report every screenshot as changed, which is then posted to the PR as a misleading "diff report."

Consider detecting the download outcome (id: + steps.<id>.outcome == 'success') and either skipping the compare/upload steps or posting a clear "no baseline available" message instead.

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In @.github/workflows/screenshot-comparison.yml around lines 43 - 52, The
workflow should detect when the download artifact step fails and skip or change
behavior of the compare/upload steps: add an id to the "Download Base
Screenshot" step (e.g., id: download_base) and change the following "Run
Comparison" (and any upload/report steps) to run only when
steps.download_base.outcome == 'success' (or post a clear "no baseline
available" message when outcome != 'success'); reference the "Download Base
Screenshot" step id and the Gradle task compareRoborazziDebug to gate or alter
downstream steps accordingly so the compare is not executed against an empty
baseline.

Copy link
Copy Markdown

@github-actions github-actions Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🤖 Android CI Summary

Step Results:

  • Debug Build: ✅ Success (2m 53s)
  • Code Style Check: ✅ Success (2m 32s)
  • Compose Stability: ✅ Success (45s)

Total Time: 6m 10s

🎉 All steps completed successfully!

Copy link
Copy Markdown

@github-actions github-actions Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🤖 Android CI Summary

Step Results:

  • Debug Build: ✅ Success (15s)
  • Code Style Check: ✅ Success (1m 4s)
  • Compose Stability: ✅ Success (1m 0s)

Total Time: 2m 19s

🎉 All steps completed successfully!

Copy link
Copy Markdown

@github-actions github-actions Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🤖 Android CI Summary

Step Results:

  • Debug Build: ✅ Success (36s)
  • Code Style Check: ✅ Success (1m 1s)
  • Compose Stability: ✅ Success (51s)

Total Time: 2m 28s

🎉 All steps completed successfully!

Copy link
Copy Markdown

@github-actions github-actions Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🤖 Android CI Summary

Step Results:

  • Debug Build: ⏭️ Skipped (0s)
  • Code Style Check: ⏭️ Skipped (0s)
  • Compose Stability: ⏭️ Skipped (0s)

Total Time: 0s

⚠️ Warning: The following steps failed: Debug Build, Code Style Check, Compose Stability
See the Actions Log for details.

@komodgn komodgn merged commit 051d052 into develop Apr 20, 2026
1 of 4 checks passed
@komodgn komodgn deleted the infra/screenshot-comment branch April 21, 2026 15:00
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

[Chore] Implement automated screenshot diff reporting

1 participant