test-go-action
/
action.yaml
12 строк · 266.0 Байт
1name: 'Simple Go Action'
2description: 'A simple Gitea action written in go'
3inputs:
4username:
5description: 'The username to print'
6required: true
7outputs:
8time:
9description: 'The time when the action was called'
10runs:
11using: 'go'
12main: 'main.go'
13