-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
58 additions
and
6 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 |
---|---|---|
@@ -1,21 +1,34 @@ | ||
name: 'lock-threads' | ||
name: Lock Threads | ||
|
||
on: | ||
push: | ||
paths: | ||
- .github/workflows/lock-threads.yml | ||
branches-ignore: | ||
- dependabot/** | ||
schedule: | ||
- cron: '0 1 */1 * *' | ||
workflow_dispatch: | ||
# Once every day at 1am UTC | ||
- cron: "0 1 * * *" | ||
issue_comment: | ||
|
||
permissions: | ||
issues: write | ||
pull-requests: write | ||
|
||
concurrency: | ||
group: lock | ||
group: lock-threads | ||
cancel-in-progress: ${{ github.event_name != 'issue_comment' }} | ||
|
||
jobs: | ||
action: | ||
lock-threads: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: dessant/lock-threads@v5 | ||
- name: Lock Outdated Threads | ||
uses: dessant/lock-threads@v5 | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
process-only: 'issues, prs' | ||
issue-inactive-days: 30 | ||
add-issue-labels: outdated | ||
pr-inactive-days: 30 | ||
add-pr-labels: outdated |
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,39 @@ | ||
name: Manage Stale Issues | ||
|
||
on: | ||
push: | ||
paths: | ||
- .github/workflows/stale-issues.yml | ||
branches-ignore: | ||
- dependabot/** | ||
schedule: | ||
# Once every day at midnight UTC | ||
- cron: "0 0 * * *" | ||
issue_comment: | ||
|
||
permissions: | ||
issues: write | ||
pull-requests: write | ||
|
||
concurrency: | ||
group: stale-issues | ||
cancel-in-progress: ${{ github.event_name != 'issue_comment' }} | ||
|
||
jobs: | ||
stale: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Mark/Close Stale Issues and Pull Requests | ||
uses: actions/stale@v9 | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
days-before-stale: 21 | ||
days-before-close: 7 | ||
stale-issue-message: > | ||
This issue has been automatically marked as stale because it has not had | ||
recent activity. It will be closed if no further activity occurs. | ||
stale-pr-message: > | ||
This pull request has been automatically marked as stale because it has not had | ||
recent activity. It will be closed if no further activity occurs. | ||
exempt-issue-labels: "help wanted,in progress" | ||
exempt-pr-labels: "help wanted,in progress" |