mirror of
https://github.com/immich-app/immich.git
synced 2025-07-09 03:04:16 -04:00
* add npm prettier dep and format script to .github folder * initial work on prettier formatting test * attempt index notation * change name of .github job to be valid * another use of index notation this is getting overcomplicated * Change job ID to `github-files-formatting` and chane the name to `.github Files Checks` * Change job name to `.github Files Formatting` * Update Makefile with .github module and `filter-out`s * run prettier formatting as added in this PR
34 lines
1.1 KiB
YAML
34 lines
1.1 KiB
YAML
name: Preview label
|
|
|
|
on:
|
|
pull_request:
|
|
types: [labeled, closed]
|
|
|
|
jobs:
|
|
comment-status:
|
|
runs-on: ubuntu-latest
|
|
if: ${{ github.event.action == 'labeled' && github.event.label.name == 'preview' }}
|
|
permissions:
|
|
pull-requests: write
|
|
steps:
|
|
- uses: mshick/add-pr-comment@b8f338c590a895d50bcbfa6c5859251edc8952fc # v2
|
|
with:
|
|
message-id: 'preview-status'
|
|
message: 'Deploying preview environment to https://pr-${{ github.event.pull_request.number }}.preview.internal.immich.cloud/'
|
|
|
|
remove-label:
|
|
runs-on: ubuntu-latest
|
|
if: ${{ github.event.action == 'closed' && contains(github.event.pull_request.labels.*.name, 'preview') }}
|
|
permissions:
|
|
pull-requests: write
|
|
steps:
|
|
- uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7
|
|
with:
|
|
script: |
|
|
github.rest.issues.removeLabel({
|
|
issue_number: context.payload.pull_request.number,
|
|
owner: context.repo.owner,
|
|
repo: context.repo.repo,
|
|
name: 'preview'
|
|
})
|