mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-03-04 04:19:09 +00:00
This commit removes unnecessary main-branch merges starting from 9f8db22b774fe78fef3598c07e184c371892c1c7 and adds the following needed commit(s) that were made afterward: - 4d6ff49b9d663d0f25454f3704a45c83b35da689 - ed6ff670d102736eea0ac360921c9015151ac630 - c823b007942a04a27d02c0a28bc2ad85e8790084 - 44fad21363bef1b06422be28c9bbfadde5e44804
25 lines
688 B
YAML
25 lines
688 B
YAML
name: Release Scheduler
|
|
on:
|
|
schedule:
|
|
- cron: '15 15 * * MON' # Every Monday at 3:15pm UTC
|
|
workflow_dispatch:
|
|
permissions: read-all
|
|
jobs:
|
|
dispatch_scheduled_releases:
|
|
name: Dispatch scheduled releases
|
|
if: github.repository_owner == 'spring-projects'
|
|
strategy:
|
|
matrix:
|
|
# List of active maintenance branches.
|
|
branch: [ main, 6.1.x, 6.0.x, 5.8.x ]
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 1
|
|
- name: Dispatch
|
|
env:
|
|
GH_TOKEN: ${{ secrets.GH_ACTIONS_REPO_TOKEN }}
|
|
run: gh workflow run update-scheduled-release-version.yml -r ${{ matrix.branch }}
|