From 0730681b8a419d0122a20cc1fe7e520386d0836b Mon Sep 17 00:00:00 2001
From: Nat Goodspeed <nat@lindenlab.com>
Date: Fri, 12 Jan 2024 13:48:08 -0500
Subject: [PATCH] Fold PR labeling into existing label.yaml.

---
 .github/workflows/label.yaml    | 15 +++++++++++++++
 .github/workflows/label_pr.yaml | 17 -----------------
 2 files changed, 15 insertions(+), 17 deletions(-)
 delete mode 100644 .github/workflows/label_pr.yaml

diff --git a/.github/workflows/label.yaml b/.github/workflows/label.yaml
index 6e41d8aa2d8..e19477a533b 100644
--- a/.github/workflows/label.yaml
+++ b/.github/workflows/label.yaml
@@ -13,3 +13,18 @@ jobs:
         with:
           configuration-path: .github/labeler.yaml
           repo-token: "${{ secrets.GITHUB_TOKEN }}"
+
+  label-pr:
+    if:
+      ${{ github.event_name == 'opened' &&
+          github.event.pull_request.head.repo.owner.login == 'secondlife' }}
+    runs-on: ubuntu-latest
+    permissions:
+      pull-requests: write
+    steps:
+      - run: gh pr edit "$NUMBER" --add-label "$LABELS"
+        env:
+          GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+          GH_REPO: ${{ github.repository }}
+          NUMBER: ${{ github.event.pull_request.number }}
+          LABELS: "team:viewer"
diff --git a/.github/workflows/label_pr.yaml b/.github/workflows/label_pr.yaml
deleted file mode 100644
index 68dba7cb070..00000000000
--- a/.github/workflows/label_pr.yaml
+++ /dev/null
@@ -1,17 +0,0 @@
-name: Label PR with team:viewer when first opened
-on:
-  pull_request:
-    types:
-      - opened
-jobs:
-  label_pr:
-    runs-on: ubuntu-latest
-    permissions:
-      pull-requests: write
-    steps:
-      - run: gh pr edit "$NUMBER" --add-label "$LABELS"
-        env:
-          GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
-          GH_REPO: ${{ github.repository }}
-          NUMBER: ${{ github.event.pull_request.number }}
-          LABELS: "team:viewer"
-- 
GitLab