You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
764 B
23 lines
764 B
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 }} |