Skip to content

Commit

Permalink
Merge branch 'main' into feature/ip2geo
Browse files Browse the repository at this point in the history
Signed-off-by: Heemin Kim <[email protected]>
  • Loading branch information
heemin32 committed Jul 21, 2023
2 parents 2e4fdf2 + 806755f commit 427ebe5
Show file tree
Hide file tree
Showing 4 changed files with 48 additions and 1 deletion.
28 changes: 28 additions & 0 deletions .github/workflows/auto-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Releases

on:
push:
tags:
- '*'

jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: GitHub App token
id: github_app_token
uses: tibdex/[email protected]
with:
app_id: ${{ secrets.APP_ID }}
private_key: ${{ secrets.APP_PRIVATE_KEY }}
installation_id: 22958780
- name: Get tag
id: tag
uses: dawidd6/action-get-tag@v1
- uses: actions/checkout@v2
- uses: ncipollo/release-action@v1
with:
github_token: ${{ steps.github_app_token.outputs.token }}
bodyFile: release-notes/opensearch-geospatial.release-notes-${{steps.tag.outputs.tag}}.md
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
### Maintenance
### Refactoring

## [Unreleased 2.x](https://github.com/opensearch-project/geospatial/compare/2.7...2.x)
## [Unreleased 2.x](https://github.com/opensearch-project/geospatial/compare/2.9...2.x)
### Features
### Enhancements
### Bug Fixes
Expand Down
10 changes: 10 additions & 0 deletions release-notes/opensearch-geospatial.release-notes-2.8.0.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
## Version 2.8.0.0 Release Notes

Compatible with OpenSearch 2.8.0

### Infrastructure
* Make jacoco report to be generated faster in local ([#267](https://github.com/opensearch-project/geospatial/pull/267))
* Exclude lombok generated code from jacoco coverage report ([#268](https://github.com/opensearch-project/geospatial/pull/268))

### Maintenance
* Change package for Strings.hasText ([#314](https://github.com/opensearch-project/geospatial/pull/314))
9 changes: 9 additions & 0 deletions release-notes/opensearch-geospatial.release-notes-2.9.0.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
## Version 2.9.0.0 Release Notes

Compatible with OpenSearch 2.9.0

### Maintenance
Increment version to 2.9.0-SNAPSHOT ([#329](https://github.com/opensearch-project/geospatial/pull/329))

### Refactoring
Change package for Strings.hasText ([#314](https://github.com/opensearch-project/geospatial/pull/314))

0 comments on commit 427ebe5

Please sign in to comment.