Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

stale.yml 937B

123456789101112131415161718192021222324252627282930313233
  1. name: Close stale issues
  2. on:
  3. workflow_dispatch:
  4. schedule:
  5. - cron: "0 0 * * *"
  6. jobs:
  7. stale:
  8. runs-on: ubuntu-latest
  9. if: ${{ github.repository_owner != 'nextcloud-gmbh' }}
  10. permissions:
  11. issues: write
  12. steps:
  13. - uses: actions/stale@v9
  14. with:
  15. repo-token: ${{ secrets.COMMAND_BOT_PAT }}
  16. stale-issue-message: >
  17. This issue has been automatically marked as stale because it has not had
  18. recent activity and seems to be missing some essential information.
  19. It will be closed if no further activity occurs. Thank you
  20. for your contributions.
  21. stale-issue-label: 'stale'
  22. only-labels: 'needs info'
  23. labels-to-remove-when-unstale: 'needs info,stale'
  24. exempt-issue-labels: '1. to develop,2. developing,3. to review,4. to release,security'
  25. days-before-stale: 30
  26. days-before-close: 14
  27. # debug-only: true