fixed incorrect path in the autotagger script
This commit is contained in:
parent
e29f426fdb
commit
2866f88764
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@ jobs:
|
||||||
id: check_commit_message
|
id: check_commit_message
|
||||||
run: |
|
run: |
|
||||||
COMMIT_MESSAGE=$(echo "${{ steps.extract_commit_message.outputs.message }}")
|
COMMIT_MESSAGE=$(echo "${{ steps.extract_commit_message.outputs.message }}")
|
||||||
OUTPUT=$(python .gitea/workflows/scripts/message.py "$COMMIT_MESSAGE")
|
OUTPUT=$(python .forgejo/workflows/scripts/message.py "$COMMIT_MESSAGE")
|
||||||
if [ "$OUTPUT" = "Usage: python message.py <commit_message>" ]; then
|
if [ "$OUTPUT" = "Usage: python message.py <commit_message>" ]; then
|
||||||
echo "Called without commit message!"
|
echo "Called without commit message!"
|
||||||
exit 1
|
exit 1
|
||||||
|
|
Loading…
Reference in a new issue