Skip to content

Add missing response to BEGIN #1

Add missing response to BEGIN

Add missing response to BEGIN #1

Workflow file for this run

# copy this workflow into your repo
name: "Documentation Teardown"
on:
pull_request_target:
branches:
- "dev"
- "main"
types:
- closed
jobs:
teardown-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@v3
with:
node-version: lts/*
- name: Teardown documentation
run: |
npm install -g surge
surge teardown ${{ github.event.repository.owner.login}}-${{ github.event.repository.name}}-${{ github.event.pull_request.number }}.surge.sh --token ${{ secrets.SURGE_TOKEN }}