[llvm] [Github] Run code formatter job in release branch (PR #149387)
Aiden Grossman via llvm-commits
llvm-commits at lists.llvm.org
Thu Jul 17 12:21:49 PDT 2025
https://github.com/boomanaiden154 created https://github.com/llvm/llvm-project/pull/149387
This patch makes it so that the code formatting job will run in the release branch.
Per the request of tru@ (the current release manager).
>From 2cf9fc45c50d22b35f8ee05dd2fe77ef610b70ec Mon Sep 17 00:00:00 2001
From: Aiden Grossman <aidengrossman at google.com>
Date: Thu, 17 Jul 2025 19:20:05 +0000
Subject: [PATCH] [Github] Run code formatter job in release branch
This patch makes it so that the code formatting job will run in the
release branch.
Per the request of tru@ (the current release manager).
---
.github/workflows/pr-code-format.yml | 1 +
1 file changed, 1 insertion(+)
diff --git a/.github/workflows/pr-code-format.yml b/.github/workflows/pr-code-format.yml
index 70bcaafbd0cf3..d438654d093b0 100644
--- a/.github/workflows/pr-code-format.yml
+++ b/.github/workflows/pr-code-format.yml
@@ -8,6 +8,7 @@ on:
branches:
- main
- 'users/**'
+ - 'release/**'
jobs:
code_formatter:
More information about the llvm-commits
mailing list