aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/repo-lockdown.yml
blob: d74a759975157b928bad06edf8b3f8fcdef83ada (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
name: 'Repo Lockdown'

on:
  pull_request_target:
    types: opened

permissions:
  pull-requests: write

jobs:
  action:
    runs-on: ubuntu-latest
    steps:
      - uses: dessant/repo-lockdown@v4
        with:
          pr-comment: |
            We have mailing list based patch review so it would be great if you can send these patchs to OpenSBI mailing list.

            You need to join OpenSBI mailing list using following link
            http://lists.infradead.org/mailman/listinfo/opensbi

            Make sure you use "git send-email" to send the patches.

            Thanks for your contribution to OpenSBI project.
          lock-pr: true
          close-pr: true