github.com/hernad/nomad@v1.6.112/.github/workflows/lock.yml (about) 1 name: 'Lock Threads' 2 3 on: 4 schedule: 5 - cron: '50 1 * * *' 6 7 jobs: 8 lock: 9 runs-on: ubuntu-latest 10 steps: 11 - uses: dessant/lock-threads@c1b35aecc5cdb1a34539d14196df55838bb2f836 # v4.0.0 12 with: 13 github-token: ${{ github.token }} 14 issue-lock-comment: > 15 I'm going to lock this issue because it has been closed for _120 days_ ⏳. This helps our maintainers find and focus on the active issues. 16 17 If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further. 18 issue-lock-inactive-days: '120' 19 pr-lock-comment: > 20 I'm going to lock this pull request because it has been closed for _120 days_ ⏳. This helps our maintainers find and focus on the active contributions. 21 22 If you have found a problem that seems related to this change, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further. 23 pr-lock-inactive-days: '120' 24 permissions: 25 contents: read 26