From 5a9b96f81aedcf9018b45d1ba1a0c2c6253a7f53 Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Mon, 11 Mar 2024 21:33:13 -0400 Subject: [PATCH] fixed incorrect path in autotagger file --- .forgejo/workflows/autotagger.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.forgejo/workflows/autotagger.yaml b/.forgejo/workflows/autotagger.yaml index a12f027..86af493 100644 --- a/.forgejo/workflows/autotagger.yaml +++ b/.forgejo/workflows/autotagger.yaml @@ -27,7 +27,7 @@ jobs: id: check_commit_message run: | COMMIT_MESSAGE=$(echo "${{ steps.extract_commit_message.outputs.message }}") - OUTPUT=$(python .forgejo/scripts/message.py "$COMMIT_MESSAGE") + OUTPUT=$(python .forgejo/workflows/scripts/message.py "$COMMIT_MESSAGE") if [ $OUTPUT == "Usage: python message.py "]; then echo "Called without commit message!" exit 1