Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [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/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
28 lines
711 B
YAML
28 lines
711 B
YAML
name: Release Scheduler
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '15 13 * * TUE' # Every Tuesday at 13: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, 3.2.x, 3.1.x ]
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
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 }}
|