mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-17 03:56:42 +00:00

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
26 lines
611 B
YAML
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.
|