build: bump mobile-android-pipelines from b5d0ac4 to 344d9fa
#191
Workflow file for this run
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: Check deploy hotfix test project | |
| on: | |
| pull_request: | |
| types: | |
| - opened | |
| - reopened | |
| - synchronize | |
| - ready_for_review | |
| merge_group: | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| on_hotfix_pr: | |
| name: Verify code base when hotfix pull request is published/updated | |
| if: startsWith(github.head_ref, 'hotfix/') | |
| env: | |
| ANDROID_HOME: ${{ github.workspace }}/bin/androidSdk | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: 'Checkout codebase' | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| lfs: 'true' | |
| submodules: 'true' | |
| fetch-depth: 0 | |
| - name: Run hotfix pr checks | |
| uses: ./mobile-android-pipelines/actions/hotfix-pr | |
| with: | |
| GITHUB_ACTOR: ${{ secrets.GITHUB_ACTOR }} | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
| SCREENSHOT_TEST_COMMAND: 'patterns:verifyPaparazziDebug componentsv2:verifyPaparazziDebug theme:verifyPaparazziDebug' |