mirror of
https://github.com/immich-app/immich.git
synced 2025-02-18 01:24:26 -05:00
17 lines
451 B
YAML
17 lines
451 B
YAML
name: Preview comment
|
|
|
|
on:
|
|
pull_request:
|
|
types: [labeled]
|
|
|
|
jobs:
|
|
comment-status:
|
|
runs-on: ubuntu-latest
|
|
if: ${{ github.event.label.name == 'preview' }}
|
|
permissions:
|
|
pull-requests: write
|
|
steps:
|
|
- uses: mshick/add-pr-comment@v2
|
|
with:
|
|
message-id: "preview-status"
|
|
message: "Deploying preview environment to https://pr-${{ github.event.pull_request.number }}.preview.internal.immich.cloud/"
|