Skip to content

Fix #1295 As a shop owner, I can see a list of recently cancelled subscriptions via the dashboard #179

Fix #1295 As a shop owner, I can see a list of recently cancelled subscriptions via the dashboard

Fix #1295 As a shop owner, I can see a list of recently cancelled subscriptions via the dashboard #179

name: remove pr preview
on:
pull_request:
types: [closed]
jobs:
Delete:
environment: testing
runs-on: ubuntu-latest
steps:
- name: remove pr preview
env:
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
DOKKU_HOST: ${{ secrets.DOKKU_HOST }}
run: |
set -x
mkdir -p ~/.ssh
ssh-keyscan ${{ secrets.DOKKU_HOST }}>> ~/.ssh/known_hosts
eval `ssh-agent -s`
ssh-add - <<< "$SSH_PRIVATE_KEY"
echo deleting dokku app ${{ github.head_ref }}
ssh dokku@$DOKKU_HOST -C "dokku -- --force apps:destroy ${{ github.head_ref }}"