fix(mobile): local videos with '#' don't play on android #7394
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: Preview label | |
| on: | |
| pull_request: | |
| types: [labeled, closed] | |
| permissions: {} | |
| jobs: | |
| comment-status: | |
| runs-on: ubuntu-latest | |
| if: ${{ github.event.action == 'labeled' && github.event.label.name == 'preview' }} | |
| permissions: | |
| pull-requests: write | |
| steps: | |
| - id: token | |
| uses: immich-app/devtools/actions/create-workflow-token@da177fa133657503ddb7503f8ba53dccefec5da1 # create-workflow-token-action-v1.0.0 | |
| with: | |
| app-id: ${{ secrets.PUSH_O_MATIC_APP_ID }} | |
| private-key: ${{ secrets.PUSH_O_MATIC_APP_KEY }} | |
| - uses: mshick/add-pr-comment@b8f338c590a895d50bcbfa6c5859251edc8952fc # v2.8.2 | |
| with: | |
| github-token: ${{ steps.token.outputs.token }} | |
| message-id: 'preview-status' | |
| message: 'Deploying preview environment to https://pr-${{ github.event.pull_request.number }}.preview.internal.immich.build/' | |
| remove-label: | |
| runs-on: ubuntu-latest | |
| if: ${{ (github.event.action == 'closed' || github.event.pull_request.head.repo.fork) && contains(github.event.pull_request.labels.*.name, 'preview') }} | |
| permissions: | |
| pull-requests: write | |
| steps: | |
| - id: token | |
| uses: immich-app/devtools/actions/create-workflow-token@da177fa133657503ddb7503f8ba53dccefec5da1 # create-workflow-token-action-v1.0.0 | |
| with: | |
| app-id: ${{ secrets.PUSH_O_MATIC_APP_ID }} | |
| private-key: ${{ secrets.PUSH_O_MATIC_APP_KEY }} | |
| - uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0 | |
| with: | |
| github-token: ${{ steps.token.outputs.token }} | |
| script: | | |
| github.rest.issues.removeLabel({ | |
| issue_number: context.payload.pull_request.number, | |
| owner: context.repo.owner, | |
| repo: context.repo.repo, | |
| name: 'preview' | |
| }) | |
| - uses: mshick/add-pr-comment@b8f338c590a895d50bcbfa6c5859251edc8952fc # v2.8.2 | |
| if: ${{ github.event.pull_request.head.repo.fork }} | |
| with: | |
| github-token: ${{ steps.token.outputs.token }} | |
| message-id: 'preview-status' | |
| message: 'PRs from forks cannot have preview environments.' | |
| - uses: mshick/add-pr-comment@b8f338c590a895d50bcbfa6c5859251edc8952fc # v2.8.2 | |
| if: ${{ !github.event.pull_request.head.repo.fork }} | |
| with: | |
| github-token: ${{ steps.token.outputs.token }} | |
| message-id: 'preview-status' | |
| message: 'Preview environment has been removed.' |