-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #20 from clouddrove/feature/internal381
feat: auto changelog action added
- Loading branch information
Showing
2 changed files
with
52 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
name: changelog | ||
permissions: write-all | ||
|
||
on: | ||
push: | ||
tags: | ||
- "*" | ||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
jobs: | ||
call-workflow-changelog: | ||
uses: clouddrove/github-shared-workflows/.github/workflows/changelog.yml@master | ||
with: | ||
branch: 'master' |
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,38 @@ | ||
# Changelog | ||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [1.0.5] - 2023-04-13 | ||
### :bug: Bug Fixes | ||
- [`28165db`](https://github.com/clouddrove/terraform-azure-virtual-machine/commit/28165db28e0687d0d56e78fa119201f1e67106d4) - Map type added for virtual machine extension and changed naming for all resources | ||
|
||
## [1.0.4] - 2023-03-28 | ||
### :bug: Bug Fixes | ||
- [`743e12f`](https://github.com/clouddrove/terraform-azure-virtual-machine/commit/743e12f4e58923e198d9ec224e15459b136d12ea) - changed format of disk encryption set and assigned id to key vault key | ||
|
||
## [1.0.3] - 2023-03-21 | ||
### :bug: Bug Fixes | ||
- [`26e4890`](https://github.com/clouddrove/terraform-azure-virtual-machine/commit/26e4890e47d60cd6ba49e62cc6398228a357d4ce) - set disk encryption set id to os disk of vm | ||
|
||
## [1.0.2] - 2023-02-14 | ||
### :sparkles: New Features | ||
- [`0baa7cc`](https://github.com/clouddrove/terraform-azure-virtual-machine/commit/0baa7ccd9b6243bbcd910894aae28f1771cbd303) - Added disk encryption added with cmk and host encryption Argument | ||
|
||
## [1.0.1] - 2023-01-24 | ||
### :sparkles: New Features | ||
- [`60ba9cd`](https://github.com/clouddrove/terraform-azure-virtual-machine/commit/60ba9cd773b151534288505a7a1044ff14ceb986) - Added the windows virtual machine module | ||
|
||
## [1.0.0] - 2023-01-09 | ||
### :sparkles: New Features | ||
- [`e2f5a23`](https://github.com/clouddrove/terraform-azure-virtual-machine/commit/e2f5a23ff7b3cfb2ef7d9cdcae9dace9e0e21135) - Added Terraform Azure Virtual Machine Module. | ||
|
||
|
||
|
||
[1.0.0]: https://github.com/clouddrove/terraform-azure-virtual-machine/compare/1.0.0...master | ||
[1.0.1]: https://github.com/clouddrove/terraform-azure-virtual-machine/compare/1.0.0...1.0.1 | ||
[1.0.2]: https://github.com/clouddrove/terraform-azure-virtual-machine/compare/1.0.1...1.0.2 | ||
[1.0.3]: https://github.com/clouddrove/terraform-azure-virtual-machine/compare/1.0.3...1.0.4 | ||
[1.0.4]: https://github.com/clouddrove/terraform-azure-virtual-machine/compare/1.0.3...1.0.4 | ||
[1.0.5]: https://github.com/clouddrove/terraform-azure-virtual-machine/compare/1.0.4...1.0.5 |