-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Possible enhancement - Add changelog for this repo for automating rel…
…ease tags. ❤️☕️💡 (#177) * Add changelog for this repo for automating release branch. --------- Co-authored-by: Tatsinnit <Tatsinnit@users.noreply.github.com>
- Loading branch information
Showing
4 changed files
with
73 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Change Log | ||
|
||
## [x.x.xx] --> next will be [0.0.26] | ||
|
||
### Whats Changed | ||
|
||
- // Todo - > Add some feature et. al. description here. | ||
- // Todo - > Add some fixes et. al. description here. | ||
- // Todo - > Add other changes description here. | ||
|
||
### New Contributors | ||
|
||
- // Todo - > New contrinutors, thanks et. al. here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# Kubelogin | ||
|
||
## Maintenance | ||
|
||
* [How to release](maintenance/README.md) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
## How to Release | ||
|
||
To make a new release and publish please follow the following steps. | ||
|
||
1. Create a branch `publish-x.y.z` | ||
2. Add a section to `CHANGELOG.md` with the header `## [x.y.z]` (N.B: make sure to write the new version in square brackets as the `changelog-reader` action only works if the `CHANGELOG.md` file follows the [Keep a Changelog standard](https://github.com/olivierlacan/keep-a-changelog)) | ||
3. Create a new PR, get approval and merge | ||
4. Run the `release` workflow manually from the GH Actions tab | ||
|
||
### Sample Changelog content for first release. | ||
|
||
For first release using new release and publish using changelog here is a sample: | ||
|
||
``` | ||
## [0.0.26] | ||
* What is getting released here + @commit | ||
Thanks to whoever was involved, pm. | ||
``` | ||
|
||
### In Event of Special Case Failures Post Build and Release. | ||
|
||
In an event where build and release were successful but publish failed for something else, in that case please make sure we delete the unsucessful release note and release tag, before re-running the release again, this will get release fresh release notes and tag. |