-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
63 lines (63 loc) · 1.29 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
name: 'Favro updater'
description: 'Update Favro cards'
branding:
icon: sliders
color: purple
inputs:
token:
description: 'The Favro API token.'
required: true
fieldid:
description: 'The Favro Field to update.'
required: false
fieldtype:
description: 'The Favro Field type.'
required: false
value:
description: 'The value to set in field'
required: false
display:
description: 'The display value'
required: false
cardid:
description: 'The Favro card id'
required: true
organizationid:
description: 'The Favro organization id'
required: true
tag:
description: 'The Favro tag to set'
required: false
addtagid:
description: 'The Favro tag id to set'
required: false
removetagid:
description: 'The Favro tag id to remove'
required: false
# outputs:
# title:
# description: '?'
runs:
using: 'docker'
image: 'Dockerfile'
args:
- '-t'
- ${{ inputs.token }}
- '-f'
- ${{ inputs.fieldid }}
- '-v'
- ${{ inputs.value }}
- '--fieldtype'
- ${{ inputs.fieldtype }}
- '-d'
- ${{ inputs.display }}
- '-c'
- ${{ inputs.cardid }}
- '-o'
- ${{ inputs.organizationid }}
- '--tag'
- ${{ inputs.tag }}
- '--addtagid'
- ${{ inputs.addtagid }}
- '--removetagid'
- ${{ inputs.removetagid }}