-
-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathaction.yml
More file actions
31 lines (30 loc) · 767 Bytes
/
action.yml
File metadata and controls
31 lines (30 loc) · 767 Bytes
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: 'danger-kotlin'
description: 'Stop saying "you forgot to …" in code review'
author: 'Konstantin Aksenov'
branding:
icon: 'check-square'
color: 'green'
inputs:
dangerfile:
description: 'Path to danger file'
required: false
default: 'Dangerfile.df.kts'
run-mode:
description: 'Run mode: ci, local, pr'
required: false
default: 'ci'
job-id:
description: 'Reported CI job ID'
required: false
default: 'danger/kotlin'
args:
description: 'Extra custom arguments like "--failOnErrors --no-publish-check" and etc'
required: false
runs:
using: 'docker'
image: 'github-action/Dockerfile'
args:
- ${{ inputs.dangerfile }}
- ${{ inputs.run-mode }}
- ${{ inputs.job-id }}
- ${{ inputs.args }}