mirror of
https://github.com/callstack/agent-device.git
synced 2026-09-14 20:06:34 +08:00
30 lines
724 B
YAML
30 lines
724 B
YAML
name: Cleanup PR previews
|
|
|
|
on:
|
|
pull_request:
|
|
types:
|
|
- closed
|
|
|
|
concurrency: preview-${{ github.ref }}
|
|
|
|
jobs:
|
|
cleanup-preview:
|
|
if: github.event.pull_request.head.repo.full_name == github.repository
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: write
|
|
pull-requests: write
|
|
pages: write
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
|
with:
|
|
persist-credentials: true
|
|
|
|
- name: Remove preview
|
|
uses: rossjrw/pr-preview-action@ffa7509e91a3ec8dfc2e5536c4d5c1acdf7a6de9 # v1.8.1
|
|
with:
|
|
source-dir: website/doc_build
|
|
preview-branch: gh-pages
|
|
qr-code: true
|