forked from angularsen/UnitsNet
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🔧Add new stale bot (angularsen#1406)
The old stale bot stopped working after GitHub deprecated the old way of doing things.
- Loading branch information
1 parent
21ce300
commit d008d5c
Showing
2 changed files
with
38 additions
and
62 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# This workflow warns and then closes issues and PRs that have had no activity for a specified amount of time. | ||
# | ||
# You can adjust the behavior by modifying this file. | ||
# For more information, see: | ||
# https://github.com/actions/stale | ||
name: Mark stale issues and pull requests | ||
|
||
on: | ||
schedule: | ||
- cron: '0 2 * * *' # Runs every day at 02:00 UTC | ||
|
||
jobs: | ||
stale: | ||
|
||
runs-on: ubuntu-latest | ||
permissions: | ||
issues: write | ||
pull-requests: write | ||
|
||
steps: | ||
- uses: actions/stale@v5 | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
stale-issue-message: 'This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 7 days.' | ||
stale-pr-message: 'This PR is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 7 days.' | ||
stale-issue-label: 'no-issue-activity' | ||
stale-pr-label: 'no-pr-activity' | ||
close-issue-message: 'This issue was automatically closed due to inactivity.' | ||
close-pr-message: 'This PR was automatically closed due to inactivity.' | ||
days-before-issue-stale: 30 | ||
days-before-pr-stale: 60 | ||
days-before-issue-close: 7 | ||
days-before-pr-close: 7 | ||
exempt-issue-labels: 'pinned' | ||
exempt-pr-labels: 'pinned' | ||
exempt-draft-pr: false | ||
exempt-milestones: true | ||
exempt-all-milestones: true |