llvm-project/.github/workflows/repo-lockdown.yml
Chris Bieneman 7b654acc4d [GitHub] Update repo lockdown to exclude lldb
This change enables the LLDB project to begin experimenting with
pull-request workflows to help identify issues was we move toward
adopting pull requests.

Reviewed By: tstellar, JDevlieghere

Differential Revision: https://reviews.llvm.org/D155315
2023-07-14 19:35:15 -05:00

26 lines
611 B
YAML

name: 'Repo Lockdown'
on:
pull_request_target:
types: opened
paths-ignore:
- 'libcxx/**'
- 'libcxxabi/**'
- 'libunwind/**'
- 'runtimes/**'
- 'lldb/**'
permissions:
pull-requests: write
jobs:
action:
runs-on: ubuntu-latest
if: github.repository == 'llvm/llvm-project'
steps:
- uses: dessant/repo-lockdown@v3
with:
process-only: 'prs'
pr-comment: >
This repository does not accept pull requests.
Please follow http://llvm.org/docs/Contributing.html#how-to-submit-a-patch for contribution to LLVM.