Skip to content

jmitchel3/django-hookflow

Repository files navigation

Django Hookflow

Trigger GitHub Actions workflows from Django.

Installation

pip install django-hookflow

Depends on:

Usage

from django_hookflow import trigger_github_workflow

@trigger_github_workflow(repo="user/repo", workflow_file="workflow.yml")
def math_add_task(a, b, save_to_file=False):
    logger.info(f"Adding {a} and {b}")
    if save_to_file:
        with open("math-add-result.txt", "w") as f:
            f.write(f"{a} + {b} = {a + b}")
    return a + b
from django_hookflow import dispatch_workflow

dispatch_workflow(repo="user/repo", workflow_file="workflow.yml")

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages