mirror of
https://gitea.com/Lydanne/pr-extract-issues.git
synced 2025-08-19 02:06:02 +08:00
Initial commit
This commit is contained in:
23
action.yml
Normal file
23
action.yml
Normal 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'
|
Reference in New Issue
Block a user