diff --git a/.github/workflows/backport.yml b/.github/workflows/backport.yml new file mode 100644 index 000000000..2d3d7060f --- /dev/null +++ b/.github/workflows/backport.yml @@ -0,0 +1,29 @@ + +name: Backport +on: + pull_request_target: + types: + - closed + - labeled + +jobs: + backport: + runs-on: ubuntu-latest + permissions: + contents: write + pull-requests: write + name: Backport + steps: + - name: GitHub App token + id: github_app_token + uses: tibdex/github-app-token@v1.5.0 + with: + app_id: ${{ secrets.APP_ID }} + private_key: ${{ secrets.APP_PRIVATE_KEY }} + installation_id: 22958780 + + - name: Backport + uses: VachaShah/backport@v1.1.4 + with: + github_token: ${{ steps.github_app_token.outputs.token }} + branch_name: backport/backport-${{ github.event.number }} \ No newline at end of file diff --git a/build.gradle b/build.gradle index f1a310410..a33f0fe4d 100644 --- a/build.gradle +++ b/build.gradle @@ -98,9 +98,9 @@ publishing { publications { pluginZip(MavenPublication) { publication -> pom { + groupId = "org.opensearch.plugin" name = "opensearch-security-analytics" description = "OpenSearch Security Analytics plugin" - groupId = "org.opensearch.plugin" licenses { license { name = "The Apache License, Version 2.0"