Skip to content

Commit 72f877f

Browse files
ondrejmirtesclaude
andcommitted
Add scheduled workflow to trigger Claude easy fixes nightly
Runs claude-random-easy-fixes.yml with issue_count=5 every hour at :15 from 10pm to 7am CEST (20:15-05:15 UTC). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 0998ee8 commit 72f877f

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: "Claude Random Easy Fixes (Scheduled)"
2+
3+
on:
4+
schedule:
5+
# Run 10 times, once an hour at :15, from 10pm CEST (20:00 UTC) to 7am CEST (05:00 UTC)
6+
- cron: '15 20-23,0-5 * * *'
7+
8+
jobs:
9+
trigger:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Trigger Claude Random Easy Fixes
13+
env:
14+
GH_TOKEN: ${{ secrets.PHPSTAN_BOT_TOKEN }}
15+
run: gh workflow run claude-random-easy-fixes.yml -f issue_count=5 --repo ${{ github.repository }}

0 commit comments

Comments
 (0)