Skip to content

fix(deps): update dependency org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-navigation3 to v2.10.0-alpha07 #70

fix(deps): update dependency org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-navigation3 to v2.10.0-alpha07

fix(deps): update dependency org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-navigation3 to v2.10.0-alpha07 #70

Workflow file for this run

name: Roborazzi Snapshots
on:
pull_request:
branches:
- '*'
permissions:
contents: write
jobs:
record-snapshots:
name: Record Roborazzi Snapshots
runs-on: ubuntu-latest
timeout-minutes: 45
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Setup environment
uses: ./.github/actions/setup-gradle
with:
gradle-cache-encryption-key: ${{ secrets.GRADLE_CACHE_ENCRYPTION_KEY }}
- name: Record Roborazzi snapshots
run: ./gradlew recordRoborazziDebug
- name: Commit Roborazzi snapshots
if: always() && !github.event.pull_request.head.repo.fork
run: |
BRANCH="${{ github.event.pull_request.head.ref }}"
if git status --porcelain image/roborazzi | grep .; then
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git add image/roborazzi
git commit -m "chore: update Roborazzi snapshots"
git push origin HEAD:"$BRANCH"
else
echo "No snapshot changes to commit."
fi