Skip to content

Commit

Permalink
Add all shops configurations trigger
Browse files Browse the repository at this point in the history
Signed-off-by: Anton Fedurtsya <[email protected]>
  • Loading branch information
Sieg committed Sep 26, 2024
1 parent 16949b6 commit 1cabfd1
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions .github/workflows/dispatch_full.yml
Original file line number Diff line number Diff line change
@@ -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 }}

0 comments on commit 1cabfd1

Please sign in to comment.