-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathaction.yml
More file actions
25 lines (25 loc) · 1019 Bytes
/
Copy pathaction.yml
File metadata and controls
25 lines (25 loc) · 1019 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
name: 'Query Issues Output'
description: 'Searches Issues based on configured criteria and outputs the results as json per issue into an Artifact.'
author: 'Christopher Scott (christothes)'
branding:
icon: 'arrow-down-right'
color: 'blue'
inputs:
repotoken:
description: 'The github API token, if not he default'
required: true
repoOwnerAndName:
description: ''
required: true
searchquery:
description: 'A query to search for Issues. See https://docs.github.com/en/github/searching-for-information-on-github/searching-issues-and-pull-requests'
default: ''
searchByAssociatedMilestoneState:
description: 'Filters queried Issues to those associated with Milestones in a given state: <open|closed|all> .'
default: ''
searchByAssociatedMilestoneDueDate:
description: 'Filters queried to those associated with Milestones with a due date either past due, due today, or due in the future: <past|today|future> .'
default: ''
runs:
using: 'node12'
main: 'dist/index.js'