Skip to content

Commit

Permalink
ci(stale.yml): also mark PRs as stale (#614)
Browse files Browse the repository at this point in the history
From now on also mark PRs as stale (but don't close them automatically).

Signed-off-by: Claudio André <[email protected]>
  • Loading branch information
claudioandre-br committed Nov 17, 2024
1 parent b05cead commit 276b010
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,16 @@ jobs:
days-before-issue-close: 7
exempt-issue-labels: "keep open,O: backlog"
stale-issue-label: "O: stale"
stale-issue-message: "This issue is stale because it has been open for 14 days with no activity."
close-issue-message: >
stale-issue-message: |
"This issue is stale because it has been open for 14 days with no activity."
close-issue-message: |
"This issue was closed because it has been inactive for 7 days since being marked as stale."
days-before-pr-stale: -1
days-before-pr-stale: 14
days-before-pr-close: -1
exempt-pr-labels: "keep open"
stale-pr-label: "O: stale"
stale-pr-message: |
"This PR is stale because it has been open for 14 days with no activity."
repo-token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 276b010

Please sign in to comment.