-
-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathaction.yml
30 lines (30 loc) · 956 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
name: 'Create Issue From File'
description: 'An action to create an issue using content from a file'
inputs:
token:
description: 'The GitHub authentication token'
default: ${{ github.token }}
issue-number:
description: 'The issue number of an existing issue to update'
title:
description: 'The title of the issue.'
required: true
content-filepath:
description: 'The file path to the issue content.'
labels:
description: 'A comma separated list of labels.'
assignees:
description: 'A comma separated list of assignees (GitHub usernames).'
project:
description: 'The name of the project for which a card should be created.'
project-column:
description: 'The name of the project column under which a card should be created.'
outputs:
issue-number:
description: 'The number of the created issue.'
runs:
using: 'node12'
main: 'dist/index.js'
branding:
icon: 'alert-circle'
color: 'orange'