-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
31 lines (26 loc) · 940 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
# ref: https://help.github.com/en/actions/building-actions/metadata-syntax-for-github-actions
name: CljDoc Check Action
description: Check that CljDoc will be able to analyze the project successfully
author: Jakub Holý
branding:
color: blue
icon: check-square
inputs:
action:
required: false
description: 'The check action to run - analyze-local for deps-based projects, analyze for others'
default: 'analyze-local'
mvn_project:
required: false
description: 'Required for `analyze` - the maven group-id/project-id of the library to check; ex.: io.aviso/pretty'
mvn_version:
required: false
description: 'Required for `analyze` - the maven version of the library to check; ex.: 0.1.29-SNAPSHOT'
default: LATEST
runs:
using: docker
image: Dockerfile
args:
- -e action=${{ inputs.action }}
- -e mvn_project=${{ inputs.mvn_project }}
- -e mvn_version=${{ inputs.mvn_version }}