Files
actions-npm-groovy-lint-docker/action.yml
2024-04-23 11:19:28 +03:00

26 lines
628 B
YAML

# Copyright Avroid, Ltd. 2023-2024
#
# You can not use the contents of the file in any way without
# AVROID, Ltd. written permission.
#
# To obtain such a permit, you should contact AVROID, Ltd.
# at https://avroid.ru
name: 'Groovy linter action'
description: 'This actions check groovy files'
inputs:
input_flags:
description: 'Additional flags for npm-groovy-lint'
required: false
default: ''
input_files:
description: 'Files for linter checking'
required: true
default: ''
runs:
using: 'docker'
image: 'Dockerfile'
args:
- "${{ inputs.input_flags }}"
- "${{ inputs.input_files }}"