summaryrefslogtreecommitdiffstats
path: root/.github/workflows/lockdown.yml
blob: bdd11ab7deee4e1e184529030ef9c3a9b9f9c155 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Configure the Repo Lockdown GitHub App to automatically close pull requests.
# See https://github.com/dessant/repo-lockdown

name: 'Repo Lockdown'

on:
  issues:
    types: opened
  pull_request_target:
    types: opened

permissions:
  pull-requests: write

jobs:
  action:
    runs-on: ubuntu-latest
    steps:
      - name: 'Repo Lockdown'
        uses: dessant/repo-lockdown@v3
        with:
          pr-comment: >
            Hi, thank you for your contribution!

            GitHub is however not the right place for these. The development repository is
            hosted on GitLab: <https://gitlab.com/wireshark/wireshark>. Please have a look at
            <https://www.wireshark.org/docs/wsdg_html_chunked/ChSrcContribute.html>
            for further instructions.