generated from jacobtomlinson/go-container-action
-
Notifications
You must be signed in to change notification settings - Fork 5
/
action.yml
68 lines (67 loc) · 1.99 KB
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
name: "Track TODO Action"
description: "Sync TODO/BUG/FIXME comments with GitHub Issues and Projects"
author: "Taras Kushnir"
inputs:
REPO:
description: "Repository"
default: ""
TOKEN:
description: "Github token"
default: ""
INCLUDE_PATTERN:
description: "Regexp for source files to include"
default: ""
EXCLUDE_PATTERN:
description: "Regexp for source files to exclude"
default: ""
ROOT:
description: "Root directory for source code"
default: "."
MIN_WORDS:
description: "Minimum amount of words to create an issue"
default: "3"
MIN_CHARACTERS:
description: "Minimum amount of characters to create an issue"
default: "30"
DRY_RUN:
description: "Do not create or close real issues"
default: ""
CLOSE_ON_SAME_BRANCH:
description: "Close issues only if they are missing on the same branch"
default: "1"
ADD_LIMIT:
description: "Limit number of issues to create during workflow"
default: ""
CONCURRENCY:
description: "Amount of files to process in parallel"
default: "128"
CLOSE_LIMIT:
description: "Limit number of issues to close during workflow"
default: ""
LABEL:
description: "Label to add for new issues"
default: "todo comment"
SHA:
description: "SHA value of the commit"
default: ""
REF:
description: "Github Ref that triggered the workflow (branch or tag)"
default: ""
EXTENDED_LABELS:
description: "Create additional labels to mark branch, issue type etc."
default: "1"
PROJECT_COLUMN_ID:
description: "ID of the project column to move newly created issues to"
default: "-1"
COMMENT_ON_ISSUES:
description: "Create commit reference in the comments before closing the issue"
default: "0"
ASSIGN_FROM_BLAME:
description: "Get the author of the comment via git API from the commit hash of the comment and assign to the issue created"
default: "0"
runs:
using: "docker"
image: "Dockerfile"
branding:
icon: "check-square"
color: "green"