-
Notifications
You must be signed in to change notification settings - Fork 203
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #983 from appwrite/EVDOG4LIFE-patch-1
Stale workflow initialization
- Loading branch information
Showing
1 changed file
with
23 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,23 @@ | ||
name: Mark stale issues | ||
|
||
on: | ||
schedule: | ||
- cron: "0 0 * * *" # Midnight Runtime | ||
|
||
jobs: | ||
stale: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/stale@v9 | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
stale-issue-message: "This issue has been labeled as a 'question', indicating that it requires additional information from the requestor. It has been inactive for 7 days. If no further activity occurs, this issue will be closed in 14 days." | ||
stale-issue-label: "stale" | ||
days-before-stale: 7 | ||
days-before-close: 14 | ||
remove-stale-when-updated: true | ||
close-issue-message: "This issue has been closed due to inactivity. If you still require assistance, please provide the requested information." | ||
close-issue-reason: "not_planned" | ||
operations-per-run: 100 | ||
only-labels: "question" |