Skip to content

Commit 9270b8c

Browse files
Copilotcastrojo
andcommitted
feat: change release trigger from push to weekly schedule
- Replace push trigger with schedule trigger for Tuesday at 12:00 UTC - Preserve workflow_call and workflow_dispatch triggers for flexibility - Aligns with existing build schedules (builds at 01:00 UTC, release at 12:00 UTC) Assisted-by: Claude 3.5 Sonnet via GitHub Copilot Co-authored-by: castrojo <[email protected]>
1 parent 3b4edef commit 9270b8c

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

.github/workflows/generate-changelog-release.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
on:
2-
push:
3-
branches:
4-
- main
5-
tags:
6-
- 'lts-*'
7-
- 'lts.*'
2+
schedule:
3+
- cron: '0 12 * * 2' # Every Tuesday at 12:00 UTC
84
workflow_call:
95
inputs:
106
stream_name:

0 commit comments

Comments
 (0)