Skip to content

Commit e1d0488

Browse files
committed
💄 Update releaseTypeText 'Patch' to 'Fix', and Update README.md
1 parent 6e0dcbe commit e1d0488

File tree

3 files changed

+13
-11
lines changed

3 files changed

+13
-11
lines changed

README.md

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
- [Step 2: Add `release.yml` to `.github/workflows/`](#step-2-add-releaseyml-to-githubworkflows)
2727
- [Step 3: Commit and Push](#step-3-commit-and-push)
2828
- [If you want to run locally](#if-you-want-to-run-locally)
29-
- [Reference](#reference)
29+
- [References](#references)
3030
- [Author](#author)
3131
- [Show your support](#show-your-support)
3232

@@ -36,7 +36,6 @@
3636
## Features
3737
- :smile: A simple script to add the semver field to [gitmojis.json](https://github.com/carloscuesta/gitmoji/blob/master/src/data/gitmojis.json).
3838
- Generate the files `gitmojis.json` with the semver field added.
39-
- I referred to this issue. ( [Add a "semver" field for each emoji #429](https://github.com/carloscuesta/gitmoji/issues/429) )
4039
- :rocket: You can easily do Semver Release automatically by just committing with gitmoji. ( [like this](https://github.com/nkmr-jp/gitmoji-semver/releases) )
4140
- Automate versioning and release with GithubActions and [semantic-release](https://github.com/semantic-release/semantic-release).
4241

@@ -167,16 +166,14 @@ brew install act
167166
act -P ubuntu-18.04=nektos/act-environments-ubuntu:18.04 # ※ 16GB docker image
168167
```
169168

170-
## Reference
171-
172-
If you want to customize, please refer to the following document.
169+
## References
173170

171+
- [Add a "semver" field for each emoji #429](https://github.com/carloscuesta/gitmoji/issues/429)
172+
- [gitmoji | An emoji guide for your commit messages](https://gitmoji.carloscuesta.me/)
174173
- [GitHub - semantic-release/semantic-release](https://github.com/semantic-release/semantic-release)
175174
- [GitHub - momocow/semantic-release-gitmoji](https://github.com/momocow/semantic-release-gitmoji)
176-
- [gitmoji | An emoji guide for your commit messages](https://gitmoji.carloscuesta.me/)
177175
- [Semantic Versioning 2.0.0 | Semantic Versioning](https://semver.org/)
178176
- [Introduction to SemVer](https://blog.greenkeeper.io/introduction-to-semver-d272990c44f2)
179-
- [Add a "semver" field for each emoji #429](https://github.com/carloscuesta/gitmoji/issues/429)
180177

181178
## Author
182179

semantic-release-template/.releaserc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ const releaseNotes = {
4545
return "Feature Release!"
4646
}
4747
if (type === 'patch'){
48-
return "Patch Release"
48+
return "Fix Release"
4949
}
5050
},
5151
releaseTypeEmoji: function (type) {

semantic-release-template/README.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,16 @@
22

33
Generated by https://github.com/nkmr-jp/gitmoji-semver
44

5+
## Usage
56

6-
# Usage
7-
8-
## Check next release
97
```sh
108
npm install
119
npx semantic-release
1210
```
11+
12+
## See
13+
14+
If you want to customize, please refer to the following document.
15+
16+
- [GitHub - semantic-release/semantic-release](https://github.com/semantic-release/semantic-release)
17+
- [GitHub - momocow/semantic-release-gitmoji](https://github.com/momocow/semantic-release-gitmoji)

0 commit comments

Comments
 (0)