Skip to content

Manual version PRs #140

Manual version PRs

Manual version PRs #140

name: Manual versioning
on:
workflow_dispatch:
inputs:
shopware_version:
description: "Shopware version"
required: true
type: string
php_version:
description: "PHP version"
required: false
type: string
default: "8.2"
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
trigger_customproducts_schema:
description: "Trigger custom products 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 }}
php_version: ${{ inputs.php_version }}
secrets: inherit

Check failure on line 43 in .github/workflows/manual_versioning.yml

View workflow run for this annotation

GitHub Actions / Manual versioning

Invalid workflow file

The workflow is not valid. shopware/admin-api-reference/.github/workflows/plugin_digitalsalesroom_schema.yml@5733c1587c32b371b65072308c5a990480eceda2 (Line: 43, Col: 20): Invalid secret, DEPLOY_USER is not defined in the referenced workflow. shopware/admin-api-reference/.github/workflows/plugin_digitalsalesroom_schema.yml@5733c1587c32b371b65072308c5a990480eceda2 (Line: 44, Col: 21): Invalid secret, DEPLOY_TOKEN is not defined in the referenced workflow.
generate-commercial-trunk:
if: ${{ inputs.trigger_commercial_schema }}
uses: ./.github/workflows/plugin_commercial_schema.yml
with:
shopware_version: ${{ inputs.shopware_version }}
php_version: ${{ inputs.php_version }}
secrets: inherit
generate-digitalsalesroom-trunk:
if: ${{ inputs.trigger_digitalsalesroom_schema }}
uses: ./.github/workflows/plugin_digitalsalesroom_schema.yml
with:
shopware_version: ${{ inputs.shopware_version }}
php_version: ${{ inputs.php_version }}
secrets: inherit
generate-customproducts-trunk:
if: ${{ inputs.trigger_customproducts_schema }}
uses: ./.github/workflows/plugin_customproducts_schema.yml
with:
shopware_version: ${{ inputs.shopware_version }}
php_version: ${{ inputs.php_version }}
secrets: inherit