feat(ci): autolocker (#192)
This commit is contained in:
parent
6bd9041555
commit
f2c551cb4f
22
.github/workflows/autolocker.yml
vendored
Normal file
22
.github/workflows/autolocker.yml
vendored
Normal file
@ -0,0 +1,22 @@
|
||||
name: Autolocker
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
types: [closed]
|
||||
|
||||
jobs:
|
||||
autolock:
|
||||
# if: ${{ github.event.pull_request.merged }} # Uncomment if you want it to run only when a PR gets MERGED
|
||||
runs-on: ubuntu-latest
|
||||
name: Autolocker
|
||||
steps:
|
||||
- name: Autolock PRs that got merged or closed
|
||||
uses: actions/github-script@v6
|
||||
with:
|
||||
script: |
|
||||
github.rest.issues.lock({
|
||||
issue_number: context.issue.number,
|
||||
owner: context.repo.owner,
|
||||
repo: context.repo.repo,
|
||||
lock_reason: "resolved" // ["off-topic", "too heated", "resolved", "spam"]
|
||||
})
|
Reference in New Issue
Block a user