-
Notifications
You must be signed in to change notification settings - Fork 1
/
action.yml
37 lines (35 loc) · 903 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
32
33
34
35
36
37
name: 'CI Privacy Alert'
description: 'Detect changes in OpenAPI Spec and write them to DB'
inputs:
source-specification:
description: 'Source spec'
required: true
changed-specification:
description: 'Changed spec'
required: true
db-connection:
description: 'DB Connection string'
required: true
db-name:
description: 'Database name'
required: true
table-name:
description: 'Table name'
required: true
service-name:
description: 'Name of the current serivce'
required: true
commit:
description: 'Hash code of the commit'
required: true
runs:
using: 'docker'
image: 'Dockerfile'
args:
- ${{ inputs.source-specification }}
- ${{ inputs.changed-specification }}
- ${{ inputs.db-connection }}
- ${{ inputs.db-name }}
- ${{ inputs.table-name }}
- ${{ inputs.service-name }}
- ${{ inputs.commit }}