mirror of
https://github.com/immich-app/immich
synced 2025-10-17 18:19:27 +00:00
39 lines
1.3 KiB
YAML
39 lines
1.3 KiB
YAML
name: Docs destroy
|
|
on:
|
|
pull_request_target: # zizmor: ignore[dangerous-triggers] no attacker inputs are used here
|
|
types: [closed]
|
|
|
|
permissions: {}
|
|
|
|
jobs:
|
|
deploy:
|
|
name: Docs Destroy
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: read
|
|
pull-requests: write
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
|
with:
|
|
persist-credentials: false
|
|
|
|
- name: Setup Mise
|
|
uses: immich-app/devtools/actions/use-mise@697a75e2c3186d3c037c2c159855cf2d566542ba # use-mise-action-0.0.1
|
|
|
|
- name: Destroy Docs Subdomain
|
|
env:
|
|
TF_VAR_prefix_name: 'pr-${{ github.event.number }}'
|
|
TF_VAR_prefix_event_type: 'pr'
|
|
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
|
|
CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
|
|
TF_STATE_POSTGRES_CONN_STR: ${{ secrets.TF_STATE_POSTGRES_CONN_STR }}
|
|
working-directory: 'deployment/modules/cloudflare/docs'
|
|
run: 'mise run tf destroy -refresh=false'
|
|
|
|
- name: Comment
|
|
uses: actions-cool/maintain-one-comment@4b2dbf086015f892dcb5e8c1106f5fccd6c1476b # v3.2.0
|
|
with:
|
|
number: ${{ github.event.number }}
|
|
delete: true
|
|
body-include: '<!-- Docs PR URL -->'
|