5eb41b8a06
Bumps [actions/checkout](https://github.com/actions/checkout) from 6.0.2 to 6.0.3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/de0fac2e4500dabe0009e67214ff5f5447ce83dd...df4cb1c069e1874edd31b4311f1884172cec0e10) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 6.0.3 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
25 lines
728 B
YAML
25 lines
728 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.4.x, 6.3.x ]
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
|
|
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 }}
|