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