15 lines
309 B
YAML
15 lines
309 B
YAML
|
name: 'Simple Go Action'
|
||
|
description: 'A simple Gitea action written in go'
|
||
|
inputs:
|
||
|
username:
|
||
|
description: 'The username to print'
|
||
|
required: true
|
||
|
outputs:
|
||
|
time:
|
||
|
description: 'The time when the action was called'
|
||
|
runs:
|
||
|
using: 'go'
|
||
|
main: 'main.go'
|
||
|
pre: "pre/pre.go"
|
||
|
post: "post/post.go"
|