-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
action.yml
29 lines (29 loc) · 875 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
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 }}
repository:
description: 'The target GitHub repository'
default: ${{ github.repository }}
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 or newline-separated list of labels'
assignees:
description: 'A comma or newline-separated list of assignees (GitHub usernames)'
outputs:
issue-number:
description: 'The number of the created issue'
runs:
using: 'node20'
main: 'dist/index.js'
branding:
icon: 'alert-circle'
color: 'orange'