Skip to content

Commit f25b3fb

Browse files
author
Steve Riesenberg
committed
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
1 parent f7dcfba commit f25b3fb

File tree

1 file changed

+1
-22
lines changed

1 file changed

+1
-22
lines changed

.github/workflows/continuous-integration-workflow.yml

Lines changed: 1 addition & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -278,30 +278,9 @@ jobs:
278278
./gradlew :updateToSnapshotVersion
279279
git commit -am "Next development version"
280280
git push
281-
perform_post_release:
282-
name: Perform post-release
283-
needs: [prerequisites, deploy_artifacts, deploy_docs, deploy_schema]
284-
runs-on: ubuntu-latest
285-
permissions:
286-
contents: read
287-
issues: write
288-
timeout-minutes: 90
289-
if: ${{ endsWith(needs.prerequisites.outputs.project_version, '-SNAPSHOT') }}
290-
env:
291-
TOKEN: ${{ github.token }}
292-
VERSION: ${{ needs.prerequisites.outputs.project_version }}
293-
steps:
294-
- uses: actions/checkout@v3
295-
- name: Set up gradle
296-
uses: spring-io/spring-gradle-build-action@v1
297-
with:
298-
java-version: '17'
299-
distribution: 'temurin'
300-
- name: Schedule next release (if not already scheduled)
301-
run: ./gradlew scheduleNextRelease -PnextVersion=$VERSION -PgitHubAccessToken=$TOKEN
302281
notify_result:
303282
name: Check for failures
304-
needs: [perform_release, perform_post_release]
283+
needs: [perform_release]
305284
if: failure()
306285
runs-on: ubuntu-latest
307286
permissions:

0 commit comments

Comments
 (0)