[llvm] workflows/commit-access-review: Update label name (PR #118903)
Tom Stellard via llvm-commits
llvm-commits at lists.llvm.org
Thu Dec 5 16:25:28 PST 2024
https://github.com/tstellar created https://github.com/llvm/llvm-project/pull/118903
We switched to using a new label name for tracking commit access requests.
>From aa28c2c29bf218f50c2b94f3d586ebc071621ee8 Mon Sep 17 00:00:00 2001
From: Tom Stellard <tstellar at redhat.com>
Date: Thu, 5 Dec 2024 16:23:09 -0800
Subject: [PATCH] workflows/commit-access-review: Update label name
We switched to using a new label name for tracking commit access
requests.
---
.github/workflows/commit-access-review.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/commit-access-review.py b/.github/workflows/commit-access-review.py
index 8ea9b1fcc2fb08..682d4dff42284b 100644
--- a/.github/workflows/commit-access-review.py
+++ b/.github/workflows/commit-access-review.py
@@ -137,7 +137,7 @@ def check_manual_requests(start_date: datetime.datetime, token: str) -> list[str
"""
formatted_start_date = start_date.strftime("%Y-%m-%dT%H:%M:%S")
variables = {
- "query": f"type:issue created:>{formatted_start_date} org:llvm repo:llvm-project label:infrastructure:commit-access"
+ "query": f"type:issue created:>{formatted_start_date} org:llvm repo:llvm-project label:infra:commit-access"
}
data = run_graphql_query(query, variables, token)
More information about the llvm-commits
mailing list