[llvm] [CI] Fix typo in CI Best Practices for the release branch names push filter (PR #168226)

Ryan Mast via llvm-commits llvm-commits at lists.llvm.org
Sat Nov 15 11:01:06 PST 2025


https://github.com/nightlark created https://github.com/llvm/llvm-project/pull/168226

The CIBestPractices.rst document uses `releases/*` as the branch name filter for push events. The actual release branch names match the pattern `release/*`.

>From 91e5adcfeb3f2f9ba5e3f370673f8096fd6bb073 Mon Sep 17 00:00:00 2001
From: Ryan Mast <mast.ryan at gmail.com>
Date: Sat, 15 Nov 2025 10:58:02 -0800
Subject: [PATCH] [CI] Fix typo in push filter for release branch names

---
 llvm/docs/CIBestPractices.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/llvm/docs/CIBestPractices.rst b/llvm/docs/CIBestPractices.rst
index a2270daf6cded..2260f1fa54a92 100644
--- a/llvm/docs/CIBestPractices.rst
+++ b/llvm/docs/CIBestPractices.rst
@@ -135,7 +135,7 @@ branches as follows:
   push:
     branches:
       - main
-      - releases/*
+      - release/*
 
 Container Best Practices
 ========================



More information about the llvm-commits mailing list