Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

closing_inactive_issues 704 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  1. name: Close inactive issues
  2. on:
  3. schedule:
  4. - cron: "50 10 * * *"
  5. jobs:
  6. close-issues:
  7. runs-on: ubuntu-latest
  8. permissions:
  9. issues: write
  10. pull-requests: write
  11. steps:
  12. - uses: actions/stale@v5
  13. with:
  14. days-before-issue-stale: 8
  15. days-before-issue-close: 14
  16. stale-issue-label: "stale"
  17. stale-issue-message: "This issue is stale because it has been open for 8 days with no activity."
  18. close-issue-message: "This issue was closed because it has been inactive for 7 days since being marked as stale."
  19. days-before-pr-stale: -1
  20. days-before-pr-close: -1
  21. repo-token: ${{ secrets.GITHUB_TOKEN }}
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...