-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
31 lines (27 loc) · 795 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
name: Add issues to project board
description: Add issues to github projects boards
inputs:
github-token:
description: 'Github token'
required: true
organizations:
description: Comma separated list of Github organizations where to search issues in
required: true
issues-labels:
description: Comma separated list of labels of the issues to be searched
required: true
time-interval:
description: Time range filter for issues
required: true
project-number:
description: Number of the project board where issues must be added
required: true
column-name:
description: Name of the project board column where issues must be added
required: false
runs:
using: 'node16'
main: 'dist/index.js'
branding:
icon: 'plus'
color: 'green'