-
Notifications
You must be signed in to change notification settings - Fork 10
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 #291 from Particular/GitHubSync-20220920-000626
GitHubSync update - release-3.0
- 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: StaleBot | ||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: "0 0 * * *" | ||
jobs: | ||
stalebot: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/stale@v5.2.0 | ||
name: Set stale PR as idle | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
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. Thank you for your contributions. | ||
stale-pr-label: 'stale' | ||
days-before-pr-stale: 30 | ||
days-before-pr-close: 7 | ||
operations-per-run: 30 | ||
exempt-pr-labels: dependencies | ||
# Don't close issues or mark as stale | ||
days-before-issue-stale: -1 | ||
days-before-issue-close: -1 |