Skip to content

github: disable new issues #1505

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Nov 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .github/workflows/issues.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Close inactive issues
on:
schedule:
- cron: "0 0 0 0 0"
- cron: "0 0 1 * *"
workflow_dispatch:

jobs:
Expand All @@ -13,13 +13,13 @@ jobs:
steps:
- uses: actions/stale@v5
with:
days-before-issue-stale: 14
days-before-issue-close: 30
operations-per-run: 700
days-before-issue-stale: 1
days-before-issue-close: 2
operations-per-run: 900
stale-issue-label: "stale"
exempt-issue-labels: "no stale"
stale-issue-message: "This issue is stale because it has been open for 30 days with no activity. To undo this, make some activity on this issue or create a new one."
close-issue-message: "This issue was automatically closed because it has been inactive for 14 days since being marked as stale. If you bypass/problem wasn't solved, please create a new issue."
days-before-pr-stale: 14
days-before-pr-close: 30
stale-issue-message: "This issue will be closed soon, please see https://github.com/FastForwardTeam/FastForward/issues/1504"
close-issue-message: "FastForward is no longer being actively maintained, see https://github.com/FastForwardTeam/FastForward/issues/1504 for more information."
days-before-pr-stale: 30
days-before-pr-close: 60
repo-token: ${{ secrets.GITHUB_TOKEN }}
Loading