TRIGGERS_YML_PATH / TRIGGERS
# prism_project.py
...
# Triggers
TRIGGERS_YML_PATH = Path(__file__).parent / 'triggers.yml' # location of triggers.yml file
TRIGGERS = {
'on_success': [], # triggers from triggers.yml to run on success
'on_failure': [], # triggers from triggers.yml to run on failure
}
...Last updated