first version
Some checks failed
代码更新通知 / update-server (push) Failing after 0s

This commit is contained in:
2024-12-18 11:23:01 +08:00
commit ea9148395c
9 changed files with 87 additions and 0 deletions

14
action.yaml Normal file
View File

@@ -0,0 +1,14 @@
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/main.go'
post: 'post/main.go'