From d78dcc1cba514811956d8de4de3c1c6bffb40a95 Mon Sep 17 00:00:00 2001 From: Ryan Kearsley Date: Thu, 19 Feb 2026 15:55:15 +0000 Subject: [PATCH] Add reusable deploy workflow with minimal yaml to github register it --- .github/workflows/deploy-reusable.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/deploy-reusable.yml diff --git a/.github/workflows/deploy-reusable.yml b/.github/workflows/deploy-reusable.yml new file mode 100644 index 0000000..1e8ff9d --- /dev/null +++ b/.github/workflows/deploy-reusable.yml @@ -0,0 +1,17 @@ +name: Reusable Deploy + +on: + workflow_dispatch: + inputs: + environment: + required: true + type: choice + options: + - preprod + - prod + +jobs: + placeholder: + runs-on: ubuntu-latest + steps: + - run: echo "Triggered from feature branch. This placeholder should not run." \ No newline at end of file