Command listing available actions
With command `ahjo list` you can view all available actions and their descriptions.
Action name from function name
In older versions of Ahjo, action name had to be given as parameter to action decorator.
action(name='test', affects_database=False, dependencies=['deploy'])
def test_action(context):
print("Its working!")
In this version, if action name is not explicitly defined, the action will have the same name as the decorated function.
Underscones are interpret as hyphen. If the name of the decorated function is `test_action`, the action will be named `test-action`.
action(affects_database=False, dependencies=['deploy'])
def test(context):
print("Its working!")