n8n/.github/workflows/release-schedule-patch-prs.yml

18 lines
411 B
YAML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

name: 'Release: Schedule Patch Release PRs'
on:
workflow_dispatch:
schedule:
- cron: '0 8 * * 2-5' # 9am CET (UTC+1), TuesdayFriday
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 }}