github.com/eliastor/durgaform@v0.0.0-20220816172711-d0ab2d17673e/.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@v2
    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 _30 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: '30'
    19            pr-lock-comment: >
    20              I'm going to lock this pull request because it has been closed for _30 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: '30'