Matrix Docker Ansible eploy
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 

28 wiersze
1.2 KiB

  1. ---
  2. name: 'Close stale issues'
  3. on: # yamllint disable-line rule:truthy
  4. schedule:
  5. - cron: '30 1 * * *'
  6. permissions:
  7. issues: write
  8. jobs:
  9. stale:
  10. if: github.repository == 'spantaleev/matrix-docker-ansible-deploy'
  11. runs-on: ubuntu-latest
  12. steps:
  13. - uses: actions/stale@v9
  14. with:
  15. # Don't process pull requests at all
  16. days-before-pr-stale: -1
  17. stale-issue-message: 'This issue is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 7 days.'
  18. close-issue-message: 'This issue was closed because it has been stalled for 7 days with no activity. If this issue is still reproduced, feel free to provide the issue with up-to-date information.'
  19. stale-issue-label: 'stale'
  20. # Add this label to exempt the issue from being marked as stale due to inactivity
  21. exempt-issue-labels: 'confirmed'
  22. # An allow-list of label(s) to only process the issues which contain one of these label(s).
  23. any-of-issue-labels: 'question,needs-info'
  24. # Use this to do a dry run from a pull request
  25. # debug-only: true