From 44fa189575296ae2a8ec7f90da35c5934f23b12d Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Thu, 16 Feb 2023 17:21:49 -0600 Subject: [PATCH] Run labeler triage once an hour (#5811) Instead of every 5 minutes since this seems to eat through the rate limits pretty quickly if it ends up running. --- .github/workflows/triage.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/triage.yml b/.github/workflows/triage.yml index 4da009f8b2..c7bde9931c 100644 --- a/.github/workflows/triage.yml +++ b/.github/workflows/triage.yml @@ -4,11 +4,11 @@ on: issues: types: ["labeled"] schedule: - # Run pull request triage every 5 minutes. Ideally, this would be on + # Run pull request triage once an hour. Ideally, this would be on # "labeled" types of pull request events, but that doesn't work if the pull # request is from another fork. For example, see # https://github.com/actions/labeler/issues/12 - - cron: '*/5 * * * *' + - cron: '42 * * * *' concurrency: group: issue-triage