n8n/.github/workflows/release-schedule-patch-prs.yml
Matsu 9406b4abc7
ci: Fix forced patch PR creation on dispatch (#32298)
Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-15 12:33:54 +03:00

19 lines
515 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 }}
force: ${{ github.event_name == 'workflow_dispatch' }}