We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 842760b commit 2126db1Copy full SHA for 2126db1
1 file changed
.github/workflows/self_prepareRelease.yml
@@ -0,0 +1,22 @@
1
+name: Prepare Release
2
+on:
3
+ push:
4
+ branches: [ release ]
5
+ paths-ignore:
6
+ - '**.md'
7
+
8
+jobs:
9
+ calculate_next_version:
10
+ uses: codenamephp/workflows.common/.github/workflows/calculate-next-version.yml@main
11
+ draft_release:
12
+ needs: calculate_next_version
13
+ uses: codenamephp/workflows.common/.github/workflows/draft-release.yml@main
14
+ with:
15
+ version: ${{ needs.calculate_next_version.outputs.version }}
16
+ update_changelog:
17
+ uses: codenamephp/workflows.common/.github/workflows/update-changelog.yml@main
18
19
20
+ ref: ${{github.ref_name}}
21
+ future-release: ${{ needs.calculate_next_version.outputs.version }}
22
+ release-branch: 'release'
0 commit comments