From 6898b6646097add33caacd7a380545dd1857226f Mon Sep 17 00:00:00 2001 From: Danny McCormick Date: Wed, 28 Aug 2019 10:06:04 -0400 Subject: [PATCH] Use cron for labeler trigger --- automation/label.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/automation/label.yml b/automation/label.yml index 6057a1c..51e7360 100644 --- a/automation/label.yml +++ b/automation/label.yml @@ -1,5 +1,7 @@ name: Labeler -on: [pull_request] +on: + schedule: + - cron: "0 * * * *" jobs: label: @@ -9,4 +11,4 @@ jobs: steps: - uses: actions/labeler@v2 with: - repo-token: "${{ secrets.GITHUB_TOKEN }}" \ No newline at end of file + repo-token: "${{ secrets.GITHUB_TOKEN }}"