name: Update Scheduled Release Version on: workflow_dispatch: # Manual trigger only. Triggered by release-scheduler.yml on main. permissions: contents: read jobs: update-scheduled-release-version: name: Update Scheduled Release Version uses: spring-io/spring-security-release-tools/.github/workflows/update-scheduled-release-version.yml@v1 secrets: inherit send-notification: name: Send Notification needs: [ update-scheduled-release-version ] if: ${{ failure() || cancelled() }} runs-on: ubuntu-latest steps: - name: Send Notification uses: spring-io/spring-security-release-tools/.github/actions/send-notification@v1 with: webhook-url: ${{ secrets.SPRING_SECURITY_CI_GCHAT_WEBHOOK_URL }}