31 lines
715 B
YAML
31 lines
715 B
YAML
name: Django Action
|
|
description: Automatically runs some django tasks.
|
|
|
|
author: Conrad Großer <conrad@noah.tech>
|
|
|
|
inputs:
|
|
output_path:
|
|
description: Output path for the generated data scheme
|
|
required: false
|
|
default: "./"
|
|
commit_message:
|
|
description: Commit message of the changed data
|
|
required: false
|
|
default: "Added data schema"
|
|
file_pattern:
|
|
description: File pattern used for `git add` command
|
|
required: false
|
|
default: "*"
|
|
pip_path:
|
|
description: Path relative to the repository root, where the requirements.txt is located
|
|
required: false
|
|
default: "requirements.txt"
|
|
|
|
runs:
|
|
using: "docker"
|
|
image: "Dockerfile"
|
|
|
|
branding:
|
|
icon: "book"
|
|
color: "green"
|