From ee5f318997ef7c26ab6e71e40d42d58318427ced Mon Sep 17 00:00:00 2001 From: enxebre Date: Tue, 12 May 2026 14:18:10 +0200 Subject: [PATCH] Add restart-prod workflow for manual production restarts Co-Authored-By: Claude Opus 4.6 --- .github/workflows/restart-prod.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/workflows/restart-prod.yml diff --git a/.github/workflows/restart-prod.yml b/.github/workflows/restart-prod.yml new file mode 100644 index 0000000..7dc0e7f --- /dev/null +++ b/.github/workflows/restart-prod.yml @@ -0,0 +1,11 @@ +name: Restart Production + +on: + workflow_dispatch: + +jobs: + restart: + runs-on: ubuntu-latest + steps: + - name: Restart production server + run: echo 'Restarting production server'