d7002057d7
This PR moves the tldraw.com app into the public repo. ### Change Type - [x] `internal` — Any other changes that don't affect the published package[^2] --------- Co-authored-by: Dan Groshev <git@dgroshev.com> Co-authored-by: alex <alex@dytry.ch>
36 lines
797 B
YAML
36 lines
797 B
YAML
name: Prune preview deploys
|
|
|
|
on:
|
|
schedule:
|
|
# run once per day at midnight or whatever
|
|
- cron: '0 0 * * *'
|
|
|
|
env:
|
|
CI: 1
|
|
PRINT_GITHUB_ANNOTATIONS: 1
|
|
defaults:
|
|
run:
|
|
shell: bash
|
|
|
|
jobs:
|
|
deploy:
|
|
name: Prune preview deploys
|
|
timeout-minutes: 15
|
|
runs-on: ubuntu-latest-16-cores
|
|
environment: deploy-staging
|
|
|
|
steps:
|
|
- name: Check out code
|
|
uses: actions/checkout@v3
|
|
with:
|
|
submodules: true
|
|
fetch-depth: 0
|
|
|
|
- uses: ./.github/actions/setup
|
|
|
|
- name: Prune preview deploys
|
|
run: yarn tsx scripts/prune-preview-deploys.ts
|
|
env:
|
|
GH_TOKEN: ${{ github.token }}
|
|
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
|
|
CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
|