generated from actions/javascript-action
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
96a56a3
commit 8858ed2
Showing
1 changed file
with
11 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,17 @@ | ||
name: 'Wait' | ||
description: 'Wait a designated number of milliseconds' | ||
name: 'Generate Workflows Map' | ||
description: 'Generate an event-workflow map of your workflows so you know which event triggers which actions in a repo' | ||
inputs: | ||
milliseconds: # id of input | ||
description: 'number of milliseconds to wait' | ||
input: | ||
description: 'Relative path under $GITHUB_WORKSPACE to the workflows folder.' | ||
required: true | ||
default: '1000' | ||
default: '.github/workflows' | ||
output: | ||
description: 'Relative path under $GITHUB_WORKSPACE to the output .md file.' | ||
required: true | ||
default: 'WORKFLOWS.md' | ||
outputs: | ||
time: # output will be available to future steps | ||
description: 'The current time after waiting' | ||
path: | ||
description: 'The path to the saved file.' | ||
runs: | ||
using: 'node12' | ||
main: 'dist/index.js' |