From deec81108e07fa6d523c160e90f9b8c2ffaee8c5 Mon Sep 17 00:00:00 2001 From: Mohammed Yasin <32206511+Y-T-G@users.noreply.github.com> Date: Sun, 11 May 2025 04:11:00 +0600 Subject: [PATCH] Exempt TODO PRs from stale (#20571) Signed-off-by: Mohammed Yasin <32206511+Y-T-G@users.noreply.github.com> Co-authored-by: Glenn Jocher Co-authored-by: UltralyticsAssistant --- .github/workflows/stale.yml | 1 + examples/YOLO11-Triton-CPP/inference.cpp | 2 ++ examples/YOLO11-Triton-CPP/inference.hpp | 2 ++ examples/YOLO11-Triton-CPP/main.cpp | 2 ++ 4 files changed, 7 insertions(+) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index ec242483d4..76458d1d10 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -51,4 +51,5 @@ jobs: days-before-pr-stale: 90 days-before-pr-close: 30 exempt-issue-labels: "documentation,tutorial,TODO" + exempt-pr-labels: "TODO" operations-per-run: 300 # The maximum number of operations per run, used to control rate limiting. diff --git a/examples/YOLO11-Triton-CPP/inference.cpp b/examples/YOLO11-Triton-CPP/inference.cpp index 3a96d4ca22..e8fc5ddde4 100644 --- a/examples/YOLO11-Triton-CPP/inference.cpp +++ b/examples/YOLO11-Triton-CPP/inference.cpp @@ -1,3 +1,5 @@ +// Ultralytics 🚀 AGPL-3.0 License - https://ultralytics.com/license + #include "inference.hpp" #include #include diff --git a/examples/YOLO11-Triton-CPP/inference.hpp b/examples/YOLO11-Triton-CPP/inference.hpp index 58159ebb2c..266a7c0035 100644 --- a/examples/YOLO11-Triton-CPP/inference.hpp +++ b/examples/YOLO11-Triton-CPP/inference.hpp @@ -1,3 +1,5 @@ +// Ultralytics 🚀 AGPL-3.0 License - https://ultralytics.com/license + #pragma once #include diff --git a/examples/YOLO11-Triton-CPP/main.cpp b/examples/YOLO11-Triton-CPP/main.cpp index 8e34232ef0..5dcf872c46 100644 --- a/examples/YOLO11-Triton-CPP/main.cpp +++ b/examples/YOLO11-Triton-CPP/main.cpp @@ -1,3 +1,5 @@ +// Ultralytics 🚀 AGPL-3.0 License - https://ultralytics.com/license + #include "inference.hpp" #include #include