Initial commit

This commit is contained in:
xrkffgg
2021-03-10 13:38:05 +08:00
commit d4ec9b4ffc
11 changed files with 729 additions and 0 deletions

23
action.yml Normal file
View File

@@ -0,0 +1,23 @@
# https://docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions
name: 'Action JS Template'
description: 'A simple javascript template for rapid development of GitHub actions.'
author: 'xrkffgg'
branding:
# https://actions-cool.github.io/github-action-branding/
icon: 'file'
color: 'blue'
inputs:
GITHUB_TOKEN:
description: Secret GitHub API token to use for making API requests.
default: ${{ github.token }}
required: true
#outputs:
# result:
# description: action result
runs:
using: 'node12'
main: 'dist/index.js'