forked from ibm-apiconnect/apic-discovery-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
31 lines (30 loc) · 1 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
name: 'Create or Update Discovered APIs'
description: 'Creates or updates the targeted api files'
inputs:
api-host:
description: 'Domain name of the ApiConnect instance where discovered APIs will be sent'
required: true
api-key:
description: 'APIC API key'
required: false
provider-org:
description: 'Name of ID of provider org to us'
required: true
api-files:
description: 'One or more file names of the APIs to sync with apiconnect discovery repo'
required: true
api-folders:
description: 'One or more folder names containing APIs to sync with apiconnect discovery repo'
required: true
resync_check:
description: 'Indicates if a check for datasource existance and resync is required'
required: false
git_diff:
description: 'Files changed between current and previous commit'
required: false
outputs:
action-result:
description: 'Result of operation to add apis to apiconnect discovery repo'
runs:
using: 'node16'
main: 'dist/index.js'