-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaction.yml
38 lines (36 loc) · 1.03 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
# action.yml
name: 'Assign to One Project'
description: 'Assign new/labeled Issue or Pull Request to a specific project dashboard column'
author: srggrs
inputs:
project:
description: 'The url of the project to be assigned to.'
required: false
project1:
description: 'The url of the first tagged project to be assigned to.'
required: false
project2:
description: 'The url of the first tagged project to be assigned to'
required: false
topic1:
description: 'A topic of the repository to check'
required: false
topic2:
description: 'A topic of the repository to check'
required: false
column_name:
description: 'The column name of the project, defaults to "To do" for issues and "In progress" for pull requests.'
required: false
runs:
using: 'docker'
image: 'Dockerfile'
args:
- ${{ inputs.project }}
- ${{ inputs.project1 }}
- ${{ inputs.project2 }}
- ${{ inputs.topic1 }}
- ${{ inputs.topic2 }}
- ${{ inputs.column_name }}
branding:
icon: 'box'
color: 'red'