Skip to content

Commit 7a88e68

Browse files
Merge pull request #13 from thomaseizinger/release/1.2.0
Release version 1.2.0
2 parents 109f759 + 80cdd73 commit 7a88e68

File tree

4 files changed

+14
-4
lines changed

4 files changed

+14
-4
lines changed

.github/workflows/draft-new-release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ on:
66

77
jobs:
88
draft-new-release:
9+
name: "Draft a new release"
910
runs-on: ubuntu-latest
1011
if: startsWith(github.event.issue.title, 'Release version') && contains(github.event.issue.labels.*.name, 'release') # only run for issues with a specific title and label
1112
steps:
@@ -33,7 +34,7 @@ jobs:
3334
3435
# This step will differ depending on your project setup
3536
- name: Bump version in package.json
36-
run: yarn version --new-version ${{ env.RELEASE_VERSION }}
37+
run: yarn version --new-version ${{ env.RELEASE_VERSION }} --no-git-tag-version
3738

3839
- name: Commit changelog and manifest files
3940
run: |

.github/workflows/publish-new-release.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,5 @@ jobs:
4545
head: release/${{ env.RELEASE_VERSION }}
4646
base: dev
4747
title: Merge release ${{ env.RELEASE_VERSION }} into dev branch
48-
reviewers: ${{ github.event.pull_request.user.login }}
4948

5049
# if needed, you can checkout the latest master here, build artifacts and publish / deploy them somewhere

CHANGELOG.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [1.2.0] - 2020-02-17
11+
12+
### Changed
13+
14+
- Don't request reviews from pull request author for merging release branch back into dev.
15+
The author of the PR is github-actions[bot], we can request a review from them.
16+
- Don't make a separate commit for updating the version of package.json
17+
1018
## [1.1.0] - 2020-02-17
1119

1220
### Added
@@ -23,7 +31,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2331

2432
- Everything since the beginning!
2533

26-
[Unreleased]: https://github.com/thomaseizinger/github-action-gitflow-release-workflow/compare/1.1.0...HEAD
34+
[Unreleased]: https://github.com/thomaseizinger/github-action-gitflow-release-workflow/compare/1.2.0...HEAD
35+
36+
[1.2.0]: https://github.com/thomaseizinger/github-action-gitflow-release-workflow/compare/1.1.0...1.2.0
2737

2838
[1.1.0]: https://github.com/thomaseizinger/github-action-gitflow-release-workflow/compare/1.0.0...1.1.0
2939

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "github-action-gitflow-release-workflow",
3-
"version": "1.1.0",
3+
"version": "1.2.0",
44
"main": "index.js",
55
"author": "Thomas Eizinger <[email protected]>",
66
"license": "MIT",

0 commit comments

Comments
 (0)