Files
add-to-project/action.yml

22 lines
700 B
YAML
Raw Normal View History

2022-07-19 14:47:27 +00:00
name: Add To GitHub projects
description: Automatically add issues and PRs to GitHub projects
2022-01-31 14:09:42 -05:00
author: GitHub
2022-04-04 16:13:29 -04:00
branding:
icon: table
2022-01-31 14:09:42 -05:00
inputs:
project-url:
required: true
description: URL of the project to add issues to
github-token:
required: true
description: A GitHub personal access token with write access to the project
2022-01-31 15:12:36 -05:00
labeled:
required: false
description: A comma-separated list of labels to use as a filter for issue to be added
2022-03-23 12:34:57 +02:00
label-operator:
required: false
2022-06-16 17:50:53 +02:00
description: The behavior of the labels filter, AND to match all labels, OR to match any label, NOT to exclude any listed label (default is OR)
2022-01-31 14:09:42 -05:00
runs:
2022-02-07 14:58:13 -05:00
using: 'node16'
2022-01-31 14:09:42 -05:00
main: 'dist/index.js'