From 3af5d4c3c4e9f0b5c92a7b79e1484d3594c67ddc Mon Sep 17 00:00:00 2001 From: Dominik Giger Date: Wed, 15 May 2024 16:31:14 +0200 Subject: [PATCH] Remove workflow updating master. Due to security restrictions the workflow is not allowed to push directly to master and therefore will fail every time. --- .github/workflows/release.yml | 29 ----------------------------- 1 file changed, 29 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9ee27adc..2ae7e8eb 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -56,32 +56,3 @@ jobs: new_branch: ${{ steps.get_branch.outputs.BRANCH }} author_name: elasticcloudclients author_email: elasticcloudclients@elastic.co - - bump-minor-version: - name: Bump main version - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - with: - ref: master - fetch-depth: 0 - token: ${{ secrets.GITHUB_TOKEN }} - - - name: Set up Go - uses: actions/setup-go@v5 - with: - go-version: 1.19 - id: go - - - name: Bump main version - run: make minor; git diff - - - name: Commit changes to main - uses: EndBug/add-and-commit@v9 - with: - default_author: user_info - message: 'Update minor version' - branch: master - author_name: elasticcloudclients - author_email: elasticcloudclients@elastic.co