From 7af6f078949841bd5e33a6c73a9b8f4f32ae31fb Mon Sep 17 00:00:00 2001 From: Yi-Ting Shih Date: Sat, 26 Apr 2025 11:21:04 +0800 Subject: [PATCH] Initial commit --- action.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 action.yaml diff --git a/action.yaml b/action.yaml new file mode 100644 index 0000000..5879d34 --- /dev/null +++ b/action.yaml @@ -0,0 +1,18 @@ +--- +name: Yaml linter +description: Lint yaml files using yamllint +author: Yi-Ting Shih + +inputs: + context: + description: The context of the build environment + required: false + default: . + image: + description: The image of yamllint + required: false + default: gitea.konchin.com/image/yamllint:main + +runs: + using: docker + image: ${{ inputs.image }}