mirror of
https://gitea.com/Lydanne/pr-extract-issues.git
synced 2025-08-16 00:36:06 +08:00
37 lines
956 B
YAML
37 lines
956 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
|
|
filter-label:
|
|
description: Further filter issues through label
|
|
issues-labels:
|
|
description: Extra operations on issues
|
|
issues-comment:
|
|
description: Extra operations on issues
|
|
remove-labels:
|
|
description: Will remove labels on issues
|
|
issues-close:
|
|
description: Extra operations on issues
|
|
|
|
outputs:
|
|
issues:
|
|
description: Get issues numbers
|
|
|
|
runs:
|
|
using: 'node12'
|
|
main: 'dist/index.js'
|