From 1cabfd1312df0e4bd90fed875edd5ddfd1366756 Mon Sep 17 00:00:00 2001 From: Anton Fedurtsya Date: Thu, 26 Sep 2024 21:23:21 +0300 Subject: [PATCH] Add all shops configurations trigger Signed-off-by: Anton Fedurtsya --- .github/workflows/dispatch_full.yml | 47 +++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 .github/workflows/dispatch_full.yml diff --git a/.github/workflows/dispatch_full.yml b/.github/workflows/dispatch_full.yml new file mode 100644 index 0000000..0b5a7b3 --- /dev/null +++ b/.github/workflows/dispatch_full.yml @@ -0,0 +1,47 @@ +name: Trigger all configurations + +on: + workflow_dispatch: + +jobs: + shop70: + if: always() + uses: oxid-eSales/github-actions/.github/workflows/universal_workflow_light.yml@v4 + with: + testplan: '~/defaults/7.0.x.yml,~/module-invoice.yml,~/_custom.yml' + runs_on: '"ubuntu-latest"' + defaults: 'v4' + plan_folder: '.github/fresh-advance' + custom_testplan_yaml: | + global: + title: '7.0.x-full' + secrets: + SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} + + shop71: + if: always() + uses: oxid-eSales/github-actions/.github/workflows/universal_workflow_light.yml@v4 + with: + testplan: '~/defaults/7.1.x.yml,~/module-invoice.yml,~/_custom.yml' + runs_on: '"ubuntu-latest"' + defaults: 'v4' + plan_folder: '.github/fresh-advance' + custom_testplan_yaml: | + global: + title: '7.1.x-full' + secrets: + SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} + + shop72: + if: always() + uses: oxid-eSales/github-actions/.github/workflows/universal_workflow_light.yml@v4 + with: + testplan: '~/defaults/7.2.x.yml,~/module-invoice.yml,~/_custom.yml' + runs_on: '"ubuntu-latest"' + defaults: 'v4' + plan_folder: '.github/fresh-advance' + custom_testplan_yaml: | + global: + title: '7.2.x-full' + secrets: + SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}