From f25b3fba2f94556c6005cf08bd600ebb25c27e52 Mon Sep 17 00:00:00 2001 From: Steve Riesenberg Date: Tue, 17 Oct 2023 17:00:37 -0500 Subject: [PATCH] Disable automation to open new milestones on 6.0.x Note: This change is only applied to 6.0.x and won't be applied to newer branches. Issue gh-13195 Closes gh-14203 --- .../continuous-integration-workflow.yml | 23 +------------------ 1 file changed, 1 insertion(+), 22 deletions(-) diff --git a/.github/workflows/continuous-integration-workflow.yml b/.github/workflows/continuous-integration-workflow.yml index f2258ea909..4d61746853 100644 --- a/.github/workflows/continuous-integration-workflow.yml +++ b/.github/workflows/continuous-integration-workflow.yml @@ -278,30 +278,9 @@ jobs: ./gradlew :updateToSnapshotVersion git commit -am "Next development version" git push - perform_post_release: - name: Perform post-release - needs: [prerequisites, deploy_artifacts, deploy_docs, deploy_schema] - runs-on: ubuntu-latest - permissions: - contents: read - issues: write - timeout-minutes: 90 - if: ${{ endsWith(needs.prerequisites.outputs.project_version, '-SNAPSHOT') }} - env: - TOKEN: ${{ github.token }} - VERSION: ${{ needs.prerequisites.outputs.project_version }} - steps: - - uses: actions/checkout@v3 - - name: Set up gradle - uses: spring-io/spring-gradle-build-action@v1 - with: - java-version: '17' - distribution: 'temurin' - - name: Schedule next release (if not already scheduled) - run: ./gradlew scheduleNextRelease -PnextVersion=$VERSION -PgitHubAccessToken=$TOKEN notify_result: name: Check for failures - needs: [perform_release, perform_post_release] + needs: [perform_release] if: failure() runs-on: ubuntu-latest permissions: