From 5100ac26d714e7b37f52800388071f33bffa8b15 Mon Sep 17 00:00:00 2001 From: Nick Fitzgerald Date: Wed, 11 Mar 2020 12:41:52 -0700 Subject: [PATCH] Use our fork of the labeler action that supports cron schedules --- .github/workflows/labeler.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml index dcafb97dc9..ddf017c71a 100644 --- a/.github/workflows/labeler.yml +++ b/.github/workflows/labeler.yml @@ -1,11 +1,13 @@ name: "Pull Request Labeler" on: -- pull_request + schedule: + # Run every 5 minutes. + - cron: '*/5 * * * *' jobs: triage: runs-on: ubuntu-latest steps: - - uses: actions/labeler@v2 + - uses: bytecodealliance/labeler@schedule-fork with: repo-token: "${{ secrets.GITHUB_TOKEN }}"