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