From 07643830c8f65eadd5114347ef745ee5736b47d6 Mon Sep 17 00:00:00 2001 From: Kasper Thystrup Karstensen Date: Thu, 2 Jul 2026 14:03:57 +0200 Subject: [PATCH 1/2] Added patch keyword to autolabelling --- .github/workflows/LABEL.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/LABEL.yml b/.github/workflows/LABEL.yml index 3ddd8aa..351aa80 100644 --- a/.github/workflows/LABEL.yml +++ b/.github/workflows/LABEL.yml @@ -30,7 +30,8 @@ jobs: if ( title.startsWith("fix") || - title.startsWith("bug") + title.startsWith("bug") || + title.startsWith("patch") ) {label = "patch";} else if ( From fa095154b5b0ddb47c6b283f135824f85bea37a6 Mon Sep 17 00:00:00 2001 From: Kasper Thystrup Karstensen Date: Thu, 2 Jul 2026 14:06:23 +0200 Subject: [PATCH 2/2] Update sleep duration in validation workflow * Sleep increased from 10 seconds to 30 seconds --- .github/workflows/VALIDATION.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/VALIDATION.yml b/.github/workflows/VALIDATION.yml index be75f9e..3f8a3d6 100644 --- a/.github/workflows/VALIDATION.yml +++ b/.github/workflows/VALIDATION.yml @@ -33,7 +33,7 @@ jobs: - name: Delayed execution if: steps.check.outputs.result == 'wait' - run: sleep 10 + run: sleep 30 - name: Check labels uses: actions/github-script@v7