diff --git a/.github/workflows/stale-pr.yml b/.github/workflows/stale-pr.yml index e77bf2b81fc86..2f55a180bc88c 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 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" days-before-stale: 30