Skip to content

Commit

Permalink
DX: Do not mark as stale issues/PRs with milestone assigned (#7398)
Browse files Browse the repository at this point in the history
  • Loading branch information
Wirone committed Oct 31, 2023
1 parent 10ef1b0 commit 7ab90e7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/issues_and_pull_requests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ env:
DAYS_BEFORE_ISSUE_STALE: 90
DAYS_BEFORE_PR_CLOSE: 14
DAYS_BEFORE_PR_STALE: 90
EXEMPT_MILESTONES: "long-term-ideas"
STALE_CLARIFICATION: |
The purpose of this action is to enforce backlog review once in a while. This is mostly for maintainers and helps with keeping repository in good condition, because stale issues and PRs can accumulate over time and make it harder for others to find relevant information. It is also possible that some changes has been made to the repo already, and issue or PR became outdated, but wasn't closed for some reason. This action helps with periodic review and closing of such stale items in automated way.

Check warning on line 17 in .github/workflows/issues_and_pull_requests.yml

View workflow job for this annotation

GitHub Actions / Validate YAML

17:181 [line-length] line too long (504 > 180 characters)
Expand All @@ -37,7 +36,7 @@ jobs:
days-before-issue-stale: "${{ env.DAYS_BEFORE_ISSUE_STALE }}"
days-before-pr-close: "${{ env.DAYS_BEFORE_PR_CLOSE }}"
days-before-pr-stale: "${{ env.DAYS_BEFORE_PR_STALE }}"
exempt-milestones: "${{ env.EXEMPT_MILESTONES }}"
exempt-all-milestones: true
labels-to-add-when-unstale: "status/to verify"
repo-token: "${{ secrets.GITHUB_TOKEN }}"
stale-issue-label: "status/stale"
Expand Down

0 comments on commit 7ab90e7

Please sign in to comment.