From dfe230ab04eaee37a99fc7806e3f945e513574d7 Mon Sep 17 00:00:00 2001 From: Daniel Saxton Date: Thu, 24 Sep 2020 21:06:59 -0500 Subject: [PATCH 1/2] Comment on stale PRs --- .github/workflows/stale-pr.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/stale-pr.yml b/.github/workflows/stale-pr.yml index e77bf2b81fc86..a3621f6a6a924 100644 --- a/.github/workflows/stale-pr.yml +++ b/.github/workflows/stale-pr.yml @@ -2,7 +2,7 @@ name: "Stale PRs" on: schedule: # * is a special character in YAML so you have to quote this string - - cron: "0 */6 * * *" + - cron: "0 0 * * *" jobs: stale: @@ -11,8 +11,8 @@ jobs: - uses: actions/stale@v3 with: repo-token: ${{ secrets.GITHUB_TOKEN }} - stale-pr-message: "This pull request is stale because it has been open for thirty days with no activity." - skip-stale-pr-message: true + stale-pr-message: "This pull request is stale because it has been open for thirty days with no activity. Please update or response to this comment if you're still interested in working on this." + skip-stale-pr-message: false stale-pr-label: "Stale" exempt-pr-labels: "Needs Review,Blocked,Needs Discussion" days-before-stale: 30 From 244d16cfe8bd34b53e234d50471463362da7eeff Mon Sep 17 00:00:00 2001 From: Daniel Saxton Date: Thu, 24 Sep 2020 22:11:24 -0500 Subject: [PATCH 2/2] Typo --- .github/workflows/stale-pr.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/stale-pr.yml b/.github/workflows/stale-pr.yml index a3621f6a6a924..2f55a180bc88c 100644 --- a/.github/workflows/stale-pr.yml +++ b/.github/workflows/stale-pr.yml @@ -11,7 +11,7 @@ jobs: - uses: actions/stale@v3 with: repo-token: ${{ secrets.GITHUB_TOKEN }} - stale-pr-message: "This pull request is stale because it has been open for thirty days with no activity. Please update or response to this comment if you're still interested in working on this." + stale-pr-message: "This pull request is stale because it has been open for thirty days with no activity. Please update or respond to this comment if you're still interested in working on this." skip-stale-pr-message: false stale-pr-label: "Stale" exempt-pr-labels: "Needs Review,Blocked,Needs Discussion"