simple-go-action/action.yml

17 lines
346 B
YAML

name: 'Simple Go Action'
description: 'A simple Gitea action written in go'
on: [push]
runs-on: ps_runner_labels
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"