mirror of
https://github.com/n8n-io/n8n.git
synced 2026-06-01 17:27:14 +02:00
17 lines
390 B
YAML
17 lines
390 B
YAML
name: 'Release: Schedule Patch Release PRs'
|
||
|
||
on:
|
||
schedule:
|
||
- cron: '0 8 * * 2-5' # 9am CET (UTC+1), Tuesday–Friday
|
||
|
||
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 }}
|