-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
33 lines (32 loc) · 998 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
# SPDX-FileCopyrightText: 2020 Serokell <https://serokell.io/>
#
# SPDX-License-Identifier: MPL-2.0
name: 'xrefcheck'
description: 'Check cross-references in your repository'
author: 'Serokell'
inputs:
xrefcheck-version:
required: false
description: 'Version of xrefcheck to use. If set to "latest", it will always get the latest stable version.'
default: 'latest'
xrefcheck-args:
required: false
description: 'Arguments passed to xrefcheck (verbatim)'
action:
required: false
description: |
Action you want to be performed, can be one of:
* install – just install the tool, its path will be in this action's output.
* run – install the tool and run it.
default: 'run'
outputs:
xrefcheck-path:
description: 'The relative path of the `xrefcheck` executable'
runs:
using: 'docker'
image: 'Dockerfile'
args:
- ${{ inputs.xrefcheck-args }}
env:
VERSION: ${{ inputs.xrefcheck-version }}
ACTION: ${{ inputs.action }}