From 57fa5ab708c351b3d2bbc341035cef24fd2a0e06 Mon Sep 17 00:00:00 2001 From: Andre Kurait Date: Tue, 6 Aug 2024 17:51:07 -0500 Subject: [PATCH 1/2] Fix AndreKurait codeowners Signed-off-by: Andre Kurait --- .github/CODEOWNERS | 2 +- MAINTAINERS.md | 20 ++++++++++---------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 1f8596656..ac7fadf84 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1,2 +1,2 @@ # This should match the owning team set up in https://github.com/orgs/opensearch-project/teams -* @andrekurait @chelma @gregschohn @lewijacn @mikaylathompson @okhasawn @peternied @sumobrian +* @AndreKurait @chelma @gregschohn @lewijacn @mikaylathompson @okhasawn @peternied @sumobrian diff --git a/MAINTAINERS.md b/MAINTAINERS.md index 821756853..f9ef23036 100644 --- a/MAINTAINERS.md +++ b/MAINTAINERS.md @@ -4,16 +4,16 @@ This document contains a list of maintainers in this repo. See [opensearch-proje ## Current Maintainers -| Maintainer | GitHub ID | Affiliation | -| ------------------ | ------------------------------------------------------- | ----------- | -| Chris Helma | [chelma](https://github.com/chelma) | Amazon | -| Greg Schohn | [gregschohn](https://github.com/gregschohn) | Amazon | -| Tanner Lewis | [lewijacn](https://github.com/lewijacn) | Amazon | -| Mikayla Thompson | [mikaylathompson](https://github.com/mikaylathompson) | Amazon | -| Omar Khasawneh | [okhasawn](https://github.com/okhasawn) | Amazon | -| Brian Presley | [sumobrian](https://github.com/sumobrian) | Amazon | -| Andre Kurait | [andrekurait](https://github.com/andrekurait) | Amazon | -| Peter Nied | [peternied](https://github.com/peternied) | Amazon | +| Maintainer | GitHub ID | Affiliation | +| ------------------ |-------------------------------------------------------| ----------- | +| Chris Helma | [chelma](https://github.com/chelma) | Amazon | +| Greg Schohn | [gregschohn](https://github.com/gregschohn) | Amazon | +| Tanner Lewis | [lewijacn](https://github.com/lewijacn) | Amazon | +| Mikayla Thompson | [mikaylathompson](https://github.com/mikaylathompson) | Amazon | +| Omar Khasawneh | [okhasawn](https://github.com/okhasawn) | Amazon | +| Brian Presley | [sumobrian](https://github.com/sumobrian) | Amazon | +| Andre Kurait | [andrekurait](https://github.com/AndreKurait) | Amazon | +| Peter Nied | [peternied](https://github.com/peternied) | Amazon | ## Emeritus From a3c033b7108714c20af7f32bab74156880201059 Mon Sep 17 00:00:00 2001 From: Andre Kurait Date: Tue, 6 Aug 2024 17:56:49 -0500 Subject: [PATCH 2/2] Fix Aws Credentials Assume role Signed-off-by: Andre Kurait --- .github/workflows/release-drafter.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release-drafter.yml b/.github/workflows/release-drafter.yml index 6fe0c3b4e..b0271dd59 100644 --- a/.github/workflows/release-drafter.yml +++ b/.github/workflows/release-drafter.yml @@ -12,6 +12,7 @@ env: permissions: id-token: write contents: read + issues: write jobs: draft-a-release: @@ -55,7 +56,8 @@ jobs: docker tag migrations/traffic_replayer:latest opensearchstaging/opensearch-migrations-traffic-replayer:${{ steps.get_data.outputs.version }} docker tag migrations/capture_proxy:latest opensearchstaging/opensearch-migrations-traffic-capture-proxy:${{ steps.get_data.outputs.version }} docker tag migrations/reindex_from_snapshot:latest opensearchstaging/opensearch-migrations-reindex-from-snapshot:${{ steps.get_data.outputs.version }} - - uses: aws-actions/configure-aws-credentials@v4 + - name: Configure AWS Credentials + uses: aws-actions/configure-aws-credentials@v4 with: role-to-assume: ${{ secrets.MIGRATIONS_DOCKER_ROLE }} aws-region: us-east-1