Skip to content

Commit 589534c

Browse files
Merge pull request #1 from codenamephp/feature/addedReleaseManagement
Initial release
2 parents e009cd3 + 851f7cc commit 589534c

File tree

8 files changed

+89
-0
lines changed

8 files changed

+89
-0
lines changed
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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@release
11+
draft_release:
12+
needs: calculate_next_version
13+
uses: codenamephp/workflows.common/.github/workflows/draft-release.yml@release
14+
with:
15+
version: ${{ needs.calculate_next_version.outputs.version }}
16+
update_changelog:
17+
uses: codenamephp/workflows.common/.github/workflows/update-changelog.yml@release
18+
needs: calculate_next_version
19+
with:
20+
ref: ${{github.ref_name}}
21+
future-release: ${{ needs.calculate_next_version.outputs.version }}
22+
release-branch: 'release'
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Update Release Versions
2+
3+
on:
4+
release:
5+
types:
6+
- published
7+
8+
jobs:
9+
update_release_versions:
10+
uses: codenamephp/workflows.common/.github/workflows/updateReleaseVersions.yml@release
11+
with:
12+
version: ${{ github.event.release.tag_name }}
13+
release_ref: ${{ github.ref }}

.idea/.gitignore

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/php.xml

Lines changed: 16 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/workflows.php.iml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)