mirror of
https://gitea.com/Lydanne/pr-extract-issues.git
synced 2025-08-17 17:26:05 +08:00
27 lines
644 B
YAML
27 lines
644 B
YAML
# https://docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions
|
|
name: 'PR Extract Issues'
|
|
description: 'A GitHub Action help you extract issues from pr commit or title or body.'
|
|
author: 'xrkffgg'
|
|
|
|
# https://actions-cool.github.io/github-action-branding/
|
|
branding:
|
|
icon: 'hard-drive'
|
|
color: 'white'
|
|
|
|
inputs:
|
|
token:
|
|
description: Secret GitHub API token to use for making API requests.
|
|
default: ${{ github.token }}
|
|
required: true
|
|
way:
|
|
description: The way to query issues.
|
|
required: true
|
|
|
|
outputs:
|
|
issues:
|
|
description: Get issues numbers.
|
|
|
|
runs:
|
|
using: 'node12'
|
|
main: 'dist/index.js'
|