Skip to content

Commit aee1df2

Browse files
🩹[Patch]: Update release configuration and action inputs (#22)
## Description - Remove `improvement` as a minor label. - Remove `bug` as a patch label. ## Type of change <!-- Use the check-boxes [x] on the options that are relevant. --> - [ ] 📖 [Docs] - [ ] 🪲 [Fix] - [x] 🩹 [Patch] - [ ] ⚠️ [Security fix] - [ ] 🚀 [Feature] - [ ] 🌟 [Breaking change] ## Checklist <!-- Use the check-boxes [x] on the options that are relevant. --> - [x] I have performed a self-review of my own code - [x] I have commented my code, particularly in hard-to-understand areas
1 parent ce836d4 commit aee1df2

File tree

3 files changed

+4
-8
lines changed

3 files changed

+4
-8
lines changed

.github/release.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ changelog:
1010
labels:
1111
- Minor
1212
- Feature
13-
- Improvement
14-
- Enhancement
1513
- title: Other Changes
1614
labels:
1715
- '*'

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,8 @@ prerelease with the branch name (in normalized form) as the prerelease name. By
3131
- For a minor release, and increasing the second number in the version.
3232
- `minor`
3333
- `feature`
34-
- `improvement`
3534
- For a patch release, and increases the third number in the version.
3635
- `patch`
37-
- `bug`
3836
- `fix`
3937

4038
The types of labels used for the types of prereleases can be configured using the `MajorLabels`, `MinorLabels` and `PatchLabels`
@@ -58,10 +56,10 @@ The action can be configured using the following settings:
5856
| `IgnoreLabels` | A comma separated list of labels that do not trigger a release. | `NoRelease` | false |
5957
| `IncrementalPrerelease` | Control wether to automatically increment the prerelease number. If disabled, the action will ensure only one prerelease exists for a given branch. | `true` | false |
6058
| `MajorLabels` | A comma separated list of labels that trigger a major release. | `major, breaking` | false |
61-
| `MinorLabels` | A comma separated list of labels that trigger a minor release. | `minor, feature, improvement` | false |
59+
| `MinorLabels` | A comma separated list of labels that trigger a minor release. | `minor, feature` | false |
6260
| `ModulePath` | Path to the folder where the module to publish is located. | `outputs/modules` | false |
6361
| `Name` | Name of the module to publish. Defaults to the repository name. | | false |
64-
| `PatchLabels` | A comma separated list of labels that trigger a patch release. | `patch, fix, bug` | false |
62+
| `PatchLabels` | A comma separated list of labels that trigger a patch release. | `patch, fix` | false |
6563
| `VersionPrefix` | The prefix to use for the version number. | `v` | false |
6664
| `WhatIf` | Control wether to simulate the action. If enabled, the action will not create any releases. Used for testing. | `false` | false |
6765

action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,11 @@ inputs:
5151
MinorLabels:
5252
description: A comma separated list of labels that trigger a minor release.
5353
required: false
54-
default: minor, feature, improvement
54+
default: minor, feature
5555
PatchLabels:
5656
description: A comma separated list of labels that trigger a patch release.
5757
required: false
58-
default: patch, fix, bug
58+
default: patch, fix
5959
VersionPrefix:
6060
description: The prefix to use for the version number.
6161
required: false

0 commit comments

Comments
 (0)