generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
47 lines (43 loc) · 1.32 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
name: 'Find TODOs in pull requests'
description: 'A GitHub Action to find TODOs in pull requests.'
author: 'yuto-trd'
# Add your action's branding here. This will appear on the GitHub Marketplace.
branding:
icon: 'check-circle'
color: 'yellow'
# Define your inputs here.
inputs:
path:
description: 'The path to search for TODOs.'
required: false
default: '["*.cs","*.js","*.jsx","*.ts","*.tsx","*.css","*.scss","*.sass"]'
commit:
description: 'The commit to compare the current commit to.'
required: false
default: ${{ github.event.pull_request.base.ref }}
single_line_comment:
default: \/\/.*
description: 'The regex pattern to match single-line comments.'
required: false
multi_line_comment_start:
default: \/\*
description: 'The regex pattern to match the start of a multi-line comment.'
required: false
multi_line_comment_end:
default: \*\/
description: 'The regex pattern to match the end of a multi-line comment.'
required: false
regex:
# default: \b(?:TODO|FIXME|HACK|XXX|BUG|NOTE|IDEA|REVIEW|NB|QUESTION|COMBAK|TEMP)\b
default: TODO
description: 'The regex pattern to match the keywords.'
required: false
# Define your outputs here.
outputs:
tasks:
description: ''
tasks_count:
description: ''
runs:
using: node20
main: dist/index.js