fixed incorrect path in autotagger file
This commit is contained in:
parent
a902fb01eb
commit
5a9b96f81a
1 changed files with 1 additions and 1 deletions
|
@ -27,7 +27,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 .forgejo/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
|
||||||
|
|
Reference in a new issue