From 4b1f9eed8365aa62f40f76cff4f54d9bdc9d2041 Mon Sep 17 00:00:00 2001 From: Hannes Mehnert Date: Mon, 6 Jan 2025 22:44:00 +0100 Subject: [PATCH] fix --- .github/workflows/maintenance-intent.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/maintenance-intent.yml b/.github/workflows/maintenance-intent.yml index 1990a10fc8d..c8b33953f42 100644 --- a/.github/workflows/maintenance-intent.yml +++ b/.github/workflows/maintenance-intent.yml @@ -26,7 +26,7 @@ jobs: echo "here3 $bn" maint_int_present=$(grep -c "^x-maintenance-intent: " ${file} || echo 0) echo "here4 $maint_int_present" - if [ $maint_int_present -neq 0 ]; then + if [ $maint_int_present -eq 0 ]; then echo "here5 $maint_int_present" echo "- $file" >> maint-int.md fi;