xref: /qemu/.github/workflows/lockdown.yml (revision a976a99a)
1# Configuration for Repo Lockdown - https://github.com/dessant/repo-lockdown
2
3name: 'Repo Lockdown'
4
5on:
6  pull_request_target:
7    types: opened
8
9permissions:
10  pull-requests: write
11
12jobs:
13  action:
14    runs-on: ubuntu-latest
15    steps:
16      - uses: dessant/repo-lockdown@v2
17        with:
18          pr-comment: |
19            Thank you for your interest in the QEMU project.
20
21            This repository is a read-only mirror of the project's repostories hosted
22            on https://gitlab.com/qemu-project/qemu.git.
23            The project does not process merge requests filed on GitHub.
24
25            QEMU welcomes contributions of code (either fixing bugs or adding new
26            functionality). However, we get a lot of patches, and so we have some
27            guidelines about contributing on the project website:
28            https://www.qemu.org/contribute/
29          lock-pr: true
30          close-pr: true
31