Skip to content

Commit

Permalink
Merge pull request #2569 from nervosnetwork/add-ci-to-manage-stale-is…
Browse files Browse the repository at this point in the history
…sues
  • Loading branch information
Keith-CY authored Jan 12, 2023
2 parents 1f2d884 + f1c4450 commit 4dcbe0c
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/update-issue-status.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Update issue status
on:
schedule:
- cron: '30 5 * * *'

permissions:
issues: write

jobs:
stale:
runs-on: ubuntu-latest
steps:
- name: Update stale issues
uses: actions/stale@v7
with:
any-of-issue-labels: replied
days-before-pr-close: -1
stale-issue-message: Mark this issue stale because no activity for 60 days
close-issue-message: Close this issue because it's inactive since marked stale
close-issue-reason: inactive

1 comment on commit 4dcbe0c

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Packaging for test is done in 3901277687

Please sign in to comment.