[llvm-branch-commits] [Github] Reenable prune-unused-branches workflow (PR #205439)
via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Tue Jun 23 14:52:55 PDT 2026
llvmorg-github-actions[bot] wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-github-workflow
Author: Aiden Grossman (boomanaiden154)
<details>
<summary>Changes</summary>
The Github API has recovered and the previous failure mode has been
rectified by ensuring that branches are ready for deletion for seven
days rather than 24 hours.
---
Full diff: https://github.com/llvm/llvm-project/pull/205439.diff
1 Files Affected:
- (modified) .github/workflows/prune-branches.yml (+2)
``````````diff
diff --git a/.github/workflows/prune-branches.yml b/.github/workflows/prune-branches.yml
index 753fc7e42bc16..d86451a52d0a0 100644
--- a/.github/workflows/prune-branches.yml
+++ b/.github/workflows/prune-branches.yml
@@ -8,6 +8,8 @@ on:
paths:
- .github/workflows/prune-branches.yml
- .github/workflows/prune-unused-branches.py
+ schedule:
+ - cron: '0 8 * * *' # Runs daily at 08:00 UTC.
jobs:
prune-branches:
``````````
</details>
https://github.com/llvm/llvm-project/pull/205439
More information about the llvm-branch-commits
mailing list