fix(deps): update dependency org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-navigation3 to v2.10.0-alpha07 #70
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |