Skip to content

Commit aea179d

Browse files
Switch to the stable branch
1 parent a83dc1a commit aea179d

2 files changed

Lines changed: 14 additions & 16 deletions

File tree

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,21 @@
1-
name: "Update Integration"
1+
name: Update Integration
22

33
on:
44
workflow_dispatch:
55
inputs:
6-
branch:
6+
target_branch:
77
type: string
8-
description: "Branch to be released"
8+
description: Release a specific branch of the core and wagons. Leave empty for intelligent defaults.
99
required: false
10-
default: "master"
1110
schedule:
12-
- cron: "10 3 * * 1-5"
11+
- cron: 10 3 * * 1-5
1312

1413
jobs:
1514
release:
1615
uses: hitobito/hitobito/.github/workflows/release.yml@master
1716
with:
1817
composition: ${{ github.repository }}
19-
release_type: "regular"
20-
stage: "integration"
21-
target_branch: ${{ inputs.branch || 'master' }}
18+
release_type: regular
19+
stage: integration
20+
target_branch: ${{ inputs.target_branch }}
2221
secrets: inherit
Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,25 @@
1-
name: 'Update Production'
1+
name: Update Production
22

33
on:
44
workflow_dispatch:
55
inputs:
66
release:
77
type: choice
8-
description: "Type of Release: regular, patch or custom"
8+
description: Type of release. Regular is for normal, planned releases. Patch is for hotfixes and single-customer fix releases. Use custom to manually set a version number.
99
required: true
10-
default: "regular"
10+
default: regular
1111
options:
1212
- regular
1313
- patch
1414
- custom
1515
version:
1616
type: string
17-
description: "next version number, if Release is custom"
17+
description: Manually set version number, if release type is custom
1818
required: false
19-
branch:
19+
target_branch:
2020
type: string
21-
description: "Branch to be released"
21+
description: Release a specific branch of the core and wagons. Leave empty for intelligent defaults.
2222
required: false
23-
default: "master"
2423

2524
jobs:
2625
release:
@@ -30,5 +29,5 @@ jobs:
3029
release_type: ${{ inputs.release }}
3130
next_version: ${{ inputs.version }}
3231
stage: production
33-
target_branch: ${{ inputs.branch }}
32+
target_branch: ${{ inputs.target_branch }}
3433
secrets: inherit

0 commit comments

Comments
 (0)