-
Notifications
You must be signed in to change notification settings - Fork 2
/
action.yml
31 lines (31 loc) · 1.1 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
name: 'Build issue dependencies graph'
author: 'Maksim Lobanov'
description: 'Update epic issue with mermaid diagram that contains dependencies between all issues included to epic'
inputs:
root-issue-url:
description: 'Url of the root issue'
required: true
section-title:
description: 'Title of markdown section where mermaid chart should be placed'
required: true
github-token:
description: 'GitHub API Token with read and write access to root issue and read access to all issues in the tasklist'
required: true
include-legend:
description: 'Set this option to include legend to mermaid diagram'
required: false
default: 'false'
include-finish-node:
description: 'Set this option to include finish node to mermaid diagram'
required: false
default: 'false'
dry-run:
description: 'Set this option to not update root issue with updated mermaid diagram and only print new diagram to output'
required: false
default: 'false'
outputs:
mermaid-diagram:
description: 'Rendered markdown with mermaid diagram'
runs:
using: 'node20'
main: 'dist/index.js'