-
Notifications
You must be signed in to change notification settings - Fork 10
46 lines (42 loc) · 1.26 KB
/
manual_versioning.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: Schedule version PRs
on:
workflow_dispatch:
inputs:
shopware_version:
description: "Shopware version"
required: true
type: string
trigger_default_schema:
description: "Trigger schema"
required: false
type: boolean
default: true
trigger_commercial_schema:
description: "Trigger commercial schema"
required: false
type: boolean
default: true
trigger_digitalsalesroom_schema:
description: "Trigger digitalsalesroom schema"
required: false
type: boolean
default: true
jobs:
generate-trunk:
if: ${{ inputs.trigger_default_schema }}
uses: ./.github/workflows/base_schema.yml
with:
shopware_version: ${{ inputs.shopware_version }}
secrets: inherit
generate-commercial-trunk:
if: ${{ inputs.trigger_commercial_schema }}
uses: ./.github/workflows/plugin_commercial_schema.yml
with:
shopware_version: ${{ inputs.shopware_version }}
secrets: inherit
generate-digitalsalesroom-trunk:
if: ${{ inputs.trigger_digitalsalesroom_schema }}
uses: ./.github/workflows/plugin_digitalsalesroom_schema.yml
with:
shopware_version: ${{ inputs.shopware_version }}
secrets: inherit