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
Copy file name to clipboardExpand all lines: README.md
+33-3Lines changed: 33 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,16 @@ This action is based on [danielpalme/ReportGenerator-GitHub-Action].
5
5
[ReportGenerator] converts coverage reports generated by OpenCover, dotCover, Visual Studio, NCover, Cobertura, JaCoCo, Clover, gcov or lcov into human readable reports in various formats.
6
6
7
7
This action does not generate the code coverage reports itself, those must be created by a previous action.
8
+
9
+
## Index
10
+
11
+
-[Inputs](#inputs)
12
+
-[Usage](#usage)
13
+
-[Contributing](#contributing)
14
+
-[Recompiling](#recompiling)
15
+
-[Incrementing the Version](#incrementing-the-version)
16
+
-[Code of Conduct](#code-of-conduct)
17
+
-[License](#license)
8
18
9
19
## Inputs
10
20
| Parameter | Is Required | Default Value | Description |
@@ -37,7 +47,7 @@ This action does not generate the code coverage reports itself, those must be cr
1. The action has been recompiled. See the [Recompiling](#recompiling) section below for more details.
86
+
2. For major or minor changes, at least one of the commit messages contains the appropriate `+semver:` keywords listed under [Incrementing the Version](#incrementing-the-version).
87
+
3. The `README.md` example has been updated with the new version. See [Incrementing the Version](#incrementing-the-version).
88
+
4. The action code does not contain sensitive information.
89
+
90
+
### Recompiling
73
91
74
92
If changes are made to the action's code in this repository, or its dependencies, you will need to re-compile the action.
75
93
@@ -80,6 +98,17 @@ npm run build
80
98
81
99
These commands utilize [ncc](https://github.com/vercel/ncc) to bundle the action and its dependencies into a single file located in the `dist` folder.
82
100
101
+
### Incrementing the Version
102
+
103
+
This action uses [git-version-lite] to examine commit messages to determine whether to perform a major, minor or patch increment on merge. The following table provides the fragment that should be included in a commit message to active different increment strategies.
0 commit comments