We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8327c8f commit ee07cf2Copy full SHA for ee07cf2
mutexbot/release/action.yml
@@ -39,6 +39,8 @@ runs:
39
rm response.json
40
elif [ "$RESPONSE" -eq 208 ]; then
41
handle_error "Resource not reserved. Aborting."
42
+ elif [ "$RESPONSE" -eq 401 ]; then
43
+ handle_error "Unauthorized! Check your API keys."
44
elif [ "$RESPONSE" -eq 404 ]; then
45
handle_error "Resource not found."
46
elif [ "$RESPONSE" -eq 409 ]; then
mutexbot/reserve/action.yml
@@ -51,6 +51,8 @@ runs:
51
sleep 5 # Wait before retrying
52
elif [ "$RESPONSE" -eq 400 ]; then
53
handle_error "Bad request. Check your input data."
54
55
56
57
58
else
0 commit comments