From f0c6acdce7247e93a9cb1232a62a90413721c640 Mon Sep 17 00:00:00 2001 From: warren rhodes Date: Fri, 5 Jan 2024 15:00:18 +0100 Subject: [PATCH] Create deployment_customers_dev.yml --- .github/workflows/deployment_customers_dev.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/deployment_customers_dev.yml diff --git a/.github/workflows/deployment_customers_dev.yml b/.github/workflows/deployment_customers_dev.yml new file mode 100644 index 0000000..b8c6d9a --- /dev/null +++ b/.github/workflows/deployment_customers_dev.yml @@ -0,0 +1,15 @@ +name: Deployment Customers (DEV) +on: + workflow_call: + +concurrency: + group: deploy-fe-customers-dev + cancel-in-progress: true + +jobs: + customers: + runs-on: [Linux] + steps: + - run: echo "bonjour madame" + +