mirror of
https://gitea.com/Lydanne/pr-extract-issues.git
synced 2025-08-17 17:26:05 +08:00
24 lines
573 B
YAML
24 lines
573 B
YAML
# 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'
|