From 62483aae6b80d38f5e4fc1b754d8d8d7427d551d Mon Sep 17 00:00:00 2001 From: Tom Keller Date: Mon, 25 May 2026 12:14:42 -0700 Subject: [PATCH] Revert "chore: automate README version bumping (#1763)" This reverts commit 07ada0fe07a23e36e59cd9063b7fcd8900b01013. --- .github/workflows/release-please.yml | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index d53e6eb..42fc714 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -53,24 +53,10 @@ if: ${{ steps.release.outputs.release_created }} run: | git config user.name "GitHub Actions" - git config user.email "github-aws-sdk-osds-automation@amazon.com" + git config user.email "github-aws-sdk-osds-automation@amazon.com if git rev-parse "v${{ steps.release.outputs.major }}" >/dev/null 2>&1; then git tag -d "v${{ steps.release.outputs.major }}" git push origin ":v${{ steps.release.outputs.major }}" fi git tag -a "v${{ steps.release.outputs.major }}" -m "Release v${{ steps.release.outputs.major }}" git push origin "v${{ steps.release.outputs.major }}" - - - name: Update README version references - if: ${{ steps.release.outputs.release_created }} - run: | - sed -i 's|configure-aws-credentials@v[0-9]*\.[0-9]*\.[0-9]*|configure-aws-credentials@${{ steps.release.outputs.tag_name }}|g' README.md - if git diff --quiet README.md; then - echo "README already up to date" - else - echo "::add-mask::${{ env.OSDS_ACCESS_TOKEN }}" - git remote set-url origin https://${{ env.OSDS_ACCESS_TOKEN }}@github.com/aws-actions/configure-aws-credentials.git - git add README.md - git commit -m "docs: update README version references to ${{ steps.release.outputs.tag_name }}" - git push --force origin - fi