-
Notifications
You must be signed in to change notification settings - Fork 4
/
action.yml
42 lines (42 loc) · 1.06 KB
/
action.yml
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
---
name: Create Github Issue
description: Creates a new github issue as directly as possible
author: Daniel Barnes
branding:
icon: alert-octagon
color: gray-dark
runs:
using: node20
main: ./dist/index.js
inputs:
token:
description: Your Github PAT, defaults to actions token
required: false
owner:
description: Repo Owner, if not set implied by context.
required: false
repo:
description: Repo or impiled by the current context
required: false
title:
description: Issue title
required: true
body:
description: Body content of issue
required: false
milestone:
description: Milestone associated with issue
required: false
labels:
description: CSV of labels (e.x. 'p0-critial,bug,aws')
required: false
assignees:
description: CSV of github usernames to assign (e.x. 'dacbd,nlf')
required: false
outputs:
json:
description: The JSON for the new created issue returned from the GitHub API
html_url:
description: The web url of the new issue
number:
description: "The new issue's number"