mirror of
https://github.com/n8n-io/n8n
synced 2026-04-21 15:47:20 +00:00
17 lines
454 B
YAML
17 lines
454 B
YAML
name: 'Release: Schedule Patch Release PRs'
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: '0 8 * * 3-5,1' # 9am CET (UTC+1), Wednesday - Friday and Monday. (Minor release on tuesday)
|
|
|
|
jobs:
|
|
create-patch-prs:
|
|
name: Create patch release PR (${{ matrix.track }})
|
|
strategy:
|
|
matrix:
|
|
track: [stable, beta, v1]
|
|
uses: ./.github/workflows/release-create-patch-pr.yml
|
|
secrets: inherit
|
|
with:
|
|
track: ${{ matrix.track }}
|