-
Notifications
You must be signed in to change notification settings - Fork 918
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Adding a CHANGELOG.md to be manually update per PR This should be automated though in the future. Issue: #2394 Signed-off-by: Kawika Avilla <kavilla414@gmail.com> Signed-off-by: Kawika Avilla <kavilla414@gmail.com>
- Loading branch information
Showing
3 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,18 @@ | ||
name: "Changelog Verifier" | ||
on: | ||
pull_request: | ||
types: [opened, edited, review_requested, synchronize, reopened, ready_for_review, labeled, unlabeled] | ||
|
||
jobs: | ||
# Enforces the update of a changelog file on every pull request | ||
verify-changelog: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
ref: ${{ github.event.pull_request.head.sha }} | ||
|
||
- uses: dangoslen/changelog-enforcer@v3 | ||
with: | ||
skipLabels: "autocut" |
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,50 @@ | ||
# CHANGELOG | ||
Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) | ||
|
||
## [Unreleased] | ||
### 💥 Breaking Changes | ||
|
||
### Deprecations | ||
|
||
### 🛡 Security | ||
|
||
### 📈 Features/Enhancements | ||
|
||
### 🐛 Bug Fixes | ||
|
||
### 🚞 Infrastructure | ||
|
||
* Add CHANGELOG.md and related workflows ([#2414](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/2414)) | ||
|
||
### 📝 Documentation | ||
|
||
### 🛠 Maintenance | ||
|
||
### 🪛 Refactoring | ||
|
||
### 🔩 Tests | ||
|
||
## [1.x] | ||
### 💥 Breaking Changes | ||
|
||
### Deprecations | ||
|
||
### 🛡 Security | ||
|
||
### 📈 Features/Enhancements | ||
|
||
### 🐛 Bug Fixes | ||
|
||
### 🚞 Infrastructure | ||
|
||
### 📝 Documentation | ||
|
||
### 🛠 Maintenance | ||
|
||
* [Version] Increment to 1.4 ([#1341](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/1341)) | ||
|
||
### 🪛 Refactoring | ||
|
||
### 🔩 Tests | ||
|
||
[1.x]: https://github.com/opensearch-project/OpenSearch-Dashboards/compare/1.3.5...1.x |