-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
43 lines (39 loc) · 1.36 KB
/
action.yml
File metadata and controls
43 lines (39 loc) · 1.36 KB
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
name: 'doc-check'
description: 'A tool to check if a PR touches code but not the corresponding documentation.'
author: 'FG-TUM'
# Add your action's branding here. This will appear on the GitHub Marketplace.
branding:
icon: 'book'
color: 'blue'
# Define your inputs here.
inputs:
githubToken:
description: 'GitHub token to authenticate the action to interact with the repository.'
required: true
userDocsDirs:
description: 'The paths to the directories where the user doc files are, relative to the repository root.'
required: true
default: 'docs'
recurseUserDocDirs:
description: 'Whether to also look for user doc files in all subdirectories of the given directories.'
required: false
default: false
dirTagSectionRegex:
description: 'The regular expression that is used to identify the section of a documentation file where the tool starts looking for directory tags.'
required: false
default: '/Related Files and Folders/i'
docFileExtensions:
description: 'File extensions that are considered for doc files.'
required: false
default: 'md'
srcFileExtensions:
description: 'File extensions that are considered for source files.'
required: false
default: 'cpp h txt'
# Define your outputs here.
outputs:
warnings:
description: 'All produced warnings.'
runs:
using: node20
main: dist/index.js