From 0e3fa10b0edf54bd40ca7806536ab6a75dab95b4 Mon Sep 17 00:00:00 2001 From: Rylan Polster Date: Thu, 26 Nov 2020 01:58:07 -0500 Subject: [PATCH] workflows/stale: fix workflow syntax --- .github/workflows/stale.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index eb2f00eb3dd0..2ebf531f2f60 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -1,6 +1,9 @@ name: "Close stale issues" on: + push: + paths: + - .github/workflows/stale.yml schedule: # Once every day - cron: "0 0 * * *" @@ -18,11 +21,8 @@ jobs: stale-issue-message: > This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. - exempt-issue-labels: - - gsoc-outreachy - - help wanted - - in progress - exempt-pr-labels: - - gsoc-outreachy - - help wanted - - in progress + stale-pr-message: > + This pull request has been automatically marked as stale because it has not had + recent activity. It will be closed if no further activity occurs. + exempt-issue-labels: 'gsoc-outreachy,help wanted,in progress' + exempt-pr-labels: 'gsoc-outreachy,help wanted,in progress'