Skip to content

Commit 4ee9f9d

Browse files
snomiaoclaudeCopilot
authored
chore: adjust EasyLabel workflow timeout and schedule (#75)
* chore: adjust EasyLabel workflow timeout and schedule - Increase timeout from 10 to 30 minutes - Change schedule from hourly to every 2 hours 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]> * Update .github/workflows/easylabel.yaml Co-authored-by: Copilot <[email protected]> --------- Co-authored-by: Claude <[email protected]> Co-authored-by: Copilot <[email protected]>
1 parent 0019baf commit 4ee9f9d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/easylabel.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,16 @@ name: "EasyLabel - Automated PR Labeling"
33
on:
44
workflow_dispatch:
55
schedule:
6-
- cron: "0 * * * *" # Run every hour at minute 0
6+
# Run every 2 hours
7+
- cron: "0 */2 * * *"
78
push:
89
branches:
910
- easylabel-debug
1011

1112
jobs:
1213
run_easylabel:
1314
runs-on: ubuntu-latest
14-
timeout-minutes: 10
15+
timeout-minutes: 30
1516
steps:
1617
- uses: actions/checkout@v4
1718
- uses: oven-sh/setup-bun@v2

0 commit comments

Comments
 (0)