-
Notifications
You must be signed in to change notification settings - Fork 3
/
action.yml
37 lines (36 loc) · 1.2 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
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
platform_api_prefix:
description: 'Platform API Prefix'
required: false
insecure_skip_tls_verify:
description: 'Insecure Skip TLS verify to allow self signed certs'
required: false
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: 'node20'
main: 'dist/index.js'