forked from jupyter/notebook
-
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 Issue Lock and Answered Bots (jupyter#6019)
- Loading branch information
Showing
2 changed files
with
37 additions
and
0 deletions.
There are no files selected for viewing
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,20 @@ | ||
# This action automatically schedules issues to be closed that have been | ||
# labeled as answered if there is no activity on them for 30 days. This takes | ||
# care of the common usecase of an issue being answered to the best of our | ||
# ability and no other follow-up from the submitter. | ||
name: 'Close answered issues' | ||
on: | ||
schedule: | ||
- cron: '30 1 * * *' | ||
|
||
jobs: | ||
stale: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/stale@v3 | ||
with: | ||
skip-stale-issue-message: true | ||
days-before-stale: 30 | ||
days-before-close: 7 | ||
stale-issue-label: 'status:Closing as Answered' | ||
only-issue-labels: 'status:Answered' |
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,17 @@ | ||
name: 'Lock Closed Threads' | ||
|
||
on: | ||
schedule: | ||
- cron: '0 0 * * *' | ||
|
||
jobs: | ||
lock: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: dessant/lock-threads@v2 | ||
with: | ||
github-token: ${{ github.token }} | ||
issue-lock-inactive-days: '180' | ||
issue-lock-labels: 'status:resolved-locked' | ||
pr-lock-inactive-days: '180' | ||
pr-lock-labels: 'status:resolved-locked' |