-
Notifications
You must be signed in to change notification settings - Fork 261
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 #10293 from nextcloud/hello-stale-bot
chore: bring back needs info workflow
- Loading branch information
Showing
3 changed files
with
33 additions
and
74 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,33 @@ | ||
# SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors | ||
# SPDX-License-Identifier: MIT | ||
name: Close stale issues | ||
|
||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: "0 0 * * *" | ||
|
||
jobs: | ||
stale: | ||
runs-on: ubuntu-latest | ||
|
||
if: ${{ github.repository_owner != 'nextcloud-gmbh' }} | ||
|
||
permissions: | ||
issues: write | ||
|
||
steps: | ||
- uses: actions/stale@v9 | ||
with: | ||
repo-token: ${{ secrets.COMMAND_BOT_PAT }} | ||
stale-issue-message: > | ||
Hi there! It looks like this issue hasn’t seen much activity for a while and might need a bit more information to move forward. | ||
If we don’t hear back soon, we may close it to keep things organized. | ||
Thanks again for your contributions – we really appreciate it! | ||
stale-issue-label: 'stale' | ||
only-labels: 'needs info' | ||
exempt-issue-labels: '1. to develop,2. developing,3. to review,4. to release,discussion' | ||
days-before-stale: 30 | ||
days-before-close: 14 | ||
debug-only: ${{ vars.WORKFLOW_STALE_DEBUG_ONLY == 'yes' }} | ||
|