-
-
Notifications
You must be signed in to change notification settings - Fork 9
54 lines (47 loc) · 1.34 KB
/
update-version-all-repos.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
47
48
49
50
51
52
53
name: Update Version for all repositories
on:
workflow_dispatch:
inputs:
branch:
description: 'Branch to use'
type: string
default: 'develop'
milestone:
description: 'Milestone to use as version'
type: string
required: true
workflow_call:
inputs:
branch:
description: 'Branch to use'
type: string
default: 'develop'
milestone:
description: 'Milestone to use as version'
type: string
required: true
jobs:
call-gateway-update-version:
uses: ./.github/workflows/update-version.yml
secrets: inherit
with:
branch: ${{ inputs.branch }}
milestone: "${{inputs.milestone}}"
call-base-release-version:
uses: assimbly/base/.github/workflows/update-version.yml@develop
secrets: inherit
with:
branch: ${{ inputs.branch }}
milestone: "${{inputs.milestone}}"
call-custom-components-release-version:
uses: assimbly/custom-components/.github/workflows/update-version.yml@develop
secrets: inherit
with:
branch: ${{ inputs.branch }}
milestone: "${{inputs.milestone}}"
call-runtime-release-version:
uses: assimbly/runtime/.github/workflows/update-version.yml@develop
secrets: inherit
with:
branch: ${{ inputs.branch }}
milestone: "${{inputs.milestone}}"