mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-03 11:51:11 +00:00
0d9097afe5
The repo-lockdown service used to run as a bot outside GitHub, but has now switched to using the GitHub Actions workflow framework. This requires use of a new configuration file. Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
53 lines
1.4 KiB
YAML
53 lines
1.4 KiB
YAML
---
|
|
# Configuration for Repo Lockdown - https://github.com/dessant/repo-lockdown
|
|
|
|
name: 'Repo Lockdown'
|
|
|
|
on:
|
|
issues:
|
|
types: opened
|
|
pull_request_target:
|
|
types: opened
|
|
|
|
permissions:
|
|
pull-requests: write
|
|
issues: write
|
|
|
|
jobs:
|
|
action:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: dessant/repo-lockdown@v2
|
|
with:
|
|
issue-comment: |
|
|
Thank you for your interest in the libvirt project.
|
|
|
|
Since this repository is a read-only mirror of the project's master
|
|
repostory hosted on GitLab, issues opened here are not processed.
|
|
|
|
We kindly request that new issues are reported to
|
|
|
|
https://gitlab.com/libvirt/libvirt/-/issues/new
|
|
|
|
Thank you for your time and understanding.
|
|
lock-issue: true
|
|
close-issue: true
|
|
pr-comment: |
|
|
Thank you for your interest in the libvirt project.
|
|
|
|
Since this repository is a read-only mirror of the project's master
|
|
repostory hosted on GitLab, merge requests opened here are not
|
|
processed.
|
|
|
|
We kindly request that contributors fork the project at
|
|
|
|
https://gitlab.com/libvirt/libvirt/
|
|
|
|
push changes to the fork, and then open a new merge request at
|
|
|
|
https://gitlab.com/libvirt/libvirt/-/merge_requests/new
|
|
|
|
Thank you for your time and understanding.
|
|
lock-pr: true
|
|
close-pr: true
|