Skip to content

Commit 8858ed2

Browse files
authored
Update action.yml
1 parent 96a56a3 commit 8858ed2

File tree

1 file changed

+11
-7
lines changed

1 file changed

+11
-7
lines changed

action.yml

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,17 @@
1-
name: 'Wait'
2-
description: 'Wait a designated number of milliseconds'
1+
name: 'Generate Workflows Map'
2+
description: 'Generate an event-workflow map of your workflows so you know which event triggers which actions in a repo'
33
inputs:
4-
milliseconds: # id of input
5-
description: 'number of milliseconds to wait'
4+
input:
5+
description: 'Relative path under $GITHUB_WORKSPACE to the workflows folder.'
66
required: true
7-
default: '1000'
7+
default: '.github/workflows'
8+
output:
9+
description: 'Relative path under $GITHUB_WORKSPACE to the output .md file.'
10+
required: true
11+
default: 'WORKFLOWS.md'
812
outputs:
9-
time: # output will be available to future steps
10-
description: 'The current time after waiting'
13+
path:
14+
description: 'The path to the saved file.'
1115
runs:
1216
using: 'node12'
1317
main: 'dist/index.js'

0 commit comments

Comments
 (0)