-
Notifications
You must be signed in to change notification settings - Fork 10
43 lines (37 loc) · 1.08 KB
/
scheduled_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
name: Schedule version PRs
on:
workflow_dispatch:
schedule:
- cron: 0 9 */1 * *
env:
SHOPWARE_VERSION: 'trunk'
PHP_VERSION: '8.2'
jobs:
vars:
runs-on: ubuntu-22.04
outputs:
SHOPWARE_VERSION: ${{ env.SHOPWARE_VERSION }}
PHP_VERSION: ${{ env.PHP_VERSION }}
steps:
- run: echo "Exposing env vars"
generate-trunk:
needs: vars
uses: ./.github/workflows/base_schema.yml
with:
shopware_version: ${{ needs.vars.outputs.SHOPWARE_VERSION }}
php_version: ${{ needs.vars.outputs.PHP_VERSION }}
secrets: inherit
generate-commercial-trunk:
needs: vars
uses: ./.github/workflows/plugin_commercial_schema.yml
with:
shopware_version: ${{ needs.vars.outputs.SHOPWARE_VERSION }}
php_version: ${{ needs.vars.outputs.PHP_VERSION }}
secrets: inherit
generate-digitalsalesroom-trunk:
needs: vars
uses: ./.github/workflows/plugin_digitalsalesroom_schema.yml
with:
shopware_version: ${{ needs.vars.outputs.SHOPWARE_VERSION }}
php_version: ${{ needs.vars.outputs.PHP_VERSION }}
secrets: inherit