forked from korosuke613/linear-app-create-issue-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
34 lines (31 loc) · 762 Bytes
/
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
name: "linear-app-create-issue"
description: "GitHub Action to create an Issue for Linear.app."
branding:
icon: check-square
color: purple
author: "James Acklin <[email protected]>"
inputs:
issueTitle:
required: true
description: "Issue title from GH event"
issueContent:
required: true
description: "Issue markdown from GH event"
issueReporter:
required: true
description: "Original reporter on GH"
issueUrl:
required: true
description: "GH issue URL"
apiKey:
required: true
description: "API key from Linear.app"
teamId:
required: true
description: "Team ID from Linear.app"
stateId:
required: true
description: "State ID from Linear.app"
runs:
using: "node16"
main: "dist/index.js"