added action yml "autolock_bot_PR.yml"

This GitHub action is used to automatically lock PR since there has not been any activity in past 14 days after it was merged.
This commit is contained in:
axleiro 2022-03-30 18:36:29 +05:30 committed by GitHub
parent c8937fa244
commit f3f7578e4b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 37 additions and 0 deletions

37
.github/workflows/autolock_bot_PR.yml vendored Normal file
View File

@ -0,0 +1,37 @@
name: 'Autolock RitBot for for PR'
on:
schedule:
- cron: '0 */2 * * *'
workflow_dispatch:
permissions:
issues: write
pull-requests: write
concurrency:
group: lock
jobs:
action:
runs-on: ubuntu-latest
steps:
- uses: dessant/lock-threads@v3
with:
github-token: ${{ github.token }}
pr-inactive-days: '14'
exclude-pr-created-before: ''
exclude-pr-created-after: ''
exclude-pr-created-between: ''
exclude-pr-closed-before: ''
exclude-pr-closed-after: ''
exclude-pr-closed-between: ''
include-any-pr-labels: 'automerge'
include-all-pr-labels: ''
exclude-any-pr-labels: ''
add-pr-labels: 'locked PR'
remove-pr-labels: ''
pr-comment: 'This PR has been automatically locked since there has not been any activity in past 14 days after it was merged.'
pr-lock-reason: 'resolved'
log-output: true