[llvm-branch-commits] [llvm] Backport [Github] Disable repo lockdown (#65161) (PR #66375)

David Koloski via llvm-branch-commits llvm-branch-commits at lists.llvm.org
Thu Sep 14 06:41:16 PDT 2023


https://github.com/djkoloski created https://github.com/llvm/llvm-project/pull/66375:

Now that PRs are supposed to be open, the repo lockdown needs to be disabled so people can actually open them up on all parts of the repository.

>From 8fbdb16f114fe4f9fa1f26eb73fcef0e7707d158 Mon Sep 17 00:00:00 2001
From: Aiden Grossman <39388941+boomanaiden154 at users.noreply.github.com>
Date: Fri, 1 Sep 2023 12:09:51 -0700
Subject: [PATCH] [Github] Disable repo lockdown (#65161)

Now that PRs are supposed to be open, the repo lockdown needs to be
disabled so people can actually open them up on all parts of the
repository.
---
 .github/workflows/repo-lockdown.yml | 25 -------------------------
 1 file changed, 25 deletions(-)
 delete mode 100644 .github/workflows/repo-lockdown.yml

diff --git a/.github/workflows/repo-lockdown.yml b/.github/workflows/repo-lockdown.yml
deleted file mode 100644
index 62914e2fe5c5710..000000000000000
--- a/.github/workflows/repo-lockdown.yml
+++ /dev/null
@@ -1,25 +0,0 @@
-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 at 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.



More information about the llvm-branch-commits mailing list