You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-[How to use in GithubActions ( only 3 minutes )](#how-to-use-in-githubactions--only-3-minutes-)
22
+
-[Step 1: Add `.semver.yml` to your Repository root](#step-1-add-semveryml-to-your-repository-root)
23
+
-[Step 2: Add `release.yml` to `.github/workflows/`](#step-2-add-releaseyml-to-githubworkflows)
24
+
-[Step 3: Commit and Push](#step-3-commit-and-push)
25
+
-[If you want to run locally](#if-you-want-to-run-locally)
26
+
-[How to use in Mac](#how-to-use-in-mac)
27
+
-[Install](#install)
28
+
-[Usage](#usage)
29
+
-[Reference](#reference)
30
+
-[Author](#author)
31
+
-[Show your support](#show-your-support)
32
+
33
+
<!-- /code_chunk_output -->
34
+
35
+
36
+
## Features
37
+
-:smile: A simple script to add the semver field to [gitmojis.json](https://github.com/carloscuesta/gitmoji/blob/master/src/data/gitmojis.json).
19
38
- Generate the files `gitmojis.json` with the semver field added.
20
39
- I referred to this issue. ( [Add a "semver" field for each emoji #429](https://github.com/carloscuesta/gitmoji/issues/429) )
21
-
- Automate versioning and release with GithubActions and [semantic-release](https://github.com/semantic-release/semantic-release).
40
+
-:rocket: You can easily do Semver Release automatically by just committing with gitmoji. ( [like this](https://github.com/nkmr-jp/gitmoji-semver/releases) )
41
+
- Automate versioning and release with GithubActions and [semantic-release](https://github.com/semantic-release/semantic-release).
42
+
22
43
23
-
## Run in Github Actions
44
+
## How to use in GithubActions ( only 3 minutes )
24
45
25
46
The following steps will automate versioning and releasing with gitmoji using GithubActions.
26
-
You only need to add two files, and you're ready to go. Feel free to try it out in your own Github repository. (**Estimated time: 3 minutes**)
47
+
You only need to add two files, and you're ready to go. Feel free to try it out in your own Github Repository.
27
48
28
-
### Step 1: Create`.semver.yml` to your Repository root
49
+
### Step 1: Add`.semver.yml` to your Repository root
29
50
30
51
example: [./.semver.yml](.semver.yml)
31
52
@@ -42,9 +63,10 @@ semver:
42
63
minor:
43
64
- sparkles # Introduce new features.
44
65
patch:
45
-
- bug # Fix a bug.
46
-
- ambulance # Critical hotfix.
47
-
- green_heart # Fix CI Build.
66
+
- bug # Fix a bug.
67
+
- ambulance # Critical hotfix.
68
+
- green_heart # Fix CI Build.
69
+
- construction_worker # Add or update CI build system.
48
70
none:
49
71
- memo # Add or update documentation.
50
72
@@ -53,7 +75,7 @@ semver:
53
75
- construction # Work in progress.
54
76
```
55
77
56
-
### Step 2: Create`release.yml` to `.github/workflows/`
78
+
### Step 2: Add`release.yml` to `.github/workflows/`
0 commit comments