From bf004e3ffd13673ef93bca9e597bc66b81f37e81 Mon Sep 17 00:00:00 2001 From: snomiao Date: Wed, 17 Sep 2025 16:38:10 +0000 Subject: [PATCH 1/2] chore: adjust EasyLabel workflow timeout and schedule MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 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 --- .github/workflows/easylabel.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/easylabel.yaml b/.github/workflows/easylabel.yaml index 1aebe0c..3bcfc6f 100644 --- a/.github/workflows/easylabel.yaml +++ b/.github/workflows/easylabel.yaml @@ -3,7 +3,8 @@ name: "EasyLabel - Automated PR Labeling" on: workflow_dispatch: schedule: - - cron: "0 * * * *" # Run every hour at minute 0 + # Run every 2 hour + - cron: "0 */2 * * *" push: branches: - easylabel-debug @@ -11,7 +12,7 @@ on: jobs: run_easylabel: runs-on: ubuntu-latest - timeout-minutes: 10 + timeout-minutes: 30 steps: - uses: actions/checkout@v4 - uses: oven-sh/setup-bun@v2 From ab1eea3fd230dfd11170022e185ec37b8ece9180 Mon Sep 17 00:00:00 2001 From: snomiao Date: Wed, 24 Sep 2025 11:07:31 +0900 Subject: [PATCH 2/2] Update .github/workflows/easylabel.yaml Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- .github/workflows/easylabel.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/easylabel.yaml b/.github/workflows/easylabel.yaml index 3bcfc6f..a33f8bb 100644 --- a/.github/workflows/easylabel.yaml +++ b/.github/workflows/easylabel.yaml @@ -3,7 +3,7 @@ name: "EasyLabel - Automated PR Labeling" on: workflow_dispatch: schedule: - # Run every 2 hour + # Run every 2 hours - cron: "0 */2 * * *" push: branches: