From abc21728e543aa5d49f739004966912bb1d532e1 Mon Sep 17 00:00:00 2001 From: "Christopher C. Wells" Date: Sun, 24 Jul 2022 12:51:00 -0700 Subject: [PATCH] Remove demo reset workflow --- .github/workflows/demo-reset.yml | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 .github/workflows/demo-reset.yml diff --git a/.github/workflows/demo-reset.yml b/.github/workflows/demo-reset.yml deleted file mode 100644 index 748878be..00000000 --- a/.github/workflows/demo-reset.yml +++ /dev/null @@ -1,22 +0,0 @@ -name: Demo reset -on: - schedule: - - cron: "0 */3 * * *" - workflow_dispatch: -jobs: - reset: - name: Reset - runs-on: ubuntu-latest - environment: - name: demo - url: https://demo.baby-buddy.net - steps: - - uses: actions/checkout@v3 - - uses: ./.github/actions/setup - - name: Install Railway CLI - run: npm install --location=global @railway/cli - - name: Reset demo database - run: npx railway run pipenv run python manage.py reset --no-input - env: - DJANGO_SETTINGS_MODULE: babybuddy.settings.railway - RAILWAY_TOKEN: ${{ secrets.RAILWAY_TOKEN }}