mirror of
https://github.com/ditkrg/project-version-check.git
synced 2026-01-22 22:06:42 +00:00
21 lines
483 B
YAML
21 lines
483 B
YAML
name: "Hello World"
|
|
description: "Greet someone and record the time"
|
|
inputs:
|
|
label:
|
|
description: "Optional label"
|
|
required: false
|
|
filePath:
|
|
description: "File path of the project info (e.g: package.json) relative to the root directory of the repository."
|
|
required: true
|
|
repoToken:
|
|
description: GitHub repository token
|
|
required: true
|
|
|
|
outputs:
|
|
time: # id of output
|
|
description: "The time we greeted you"
|
|
|
|
runs:
|
|
using: "node20"
|
|
main: "index.js"
|