Added initial action

This commit is contained in:
2020-10-06 14:17:06 +02:00
parent 66e5fd3be0
commit 7563b34387
5 changed files with 87 additions and 2 deletions

30
action.yml Normal file
View File

@@ -0,0 +1,30 @@
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"