lockdown.yml 505 B

1234567891011121314151617181920212223
  1. name: 'Lock down repository'
  2. on:
  3. issues:
  4. types: opened
  5. pull_request:
  6. types: opened
  7. schedule:
  8. - cron: '0 * * * *'
  9. jobs:
  10. lockdown:
  11. runs-on: ubuntu-latest
  12. steps:
  13. - uses: dessant/repo-lockdown@v2
  14. with:
  15. github-token: ${{ github.token }}
  16. pr-comment: >
  17. This repository does not accept pull requests.
  18. Please help us at http://crimeflare.eu.org
  19. skip-closed-issue-comment: true
  20. skip-closed-pr-comment: true