From c63dffb05630c746f1caccce7bf1b8ff0d413979 Mon Sep 17 00:00:00 2001 From: Brian Cristante Date: Fri, 27 Dec 2019 13:08:34 -0500 Subject: [PATCH] Address YAML linting errors --- action.yml | 7 ++++--- yaml-lint-config.yml | 4 ++-- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/action.yml b/action.yml index a9074cc..6552f3c 100644 --- a/action.yml +++ b/action.yml @@ -1,9 +1,10 @@ +--- name: 'Setup Python' -description: 'Set up a specific version of Python and add the command-line tools to the PATH' +description: 'Set up a specific version of Python and add the command-line tools to the PATH.' author: 'GitHub' inputs: python-version: - description: 'Version range or exact version of a Python version to use, using semvers version range syntax.' + description: 'Version range or exact version of a Python version to use, using SemVer's version range syntax.' default: '3.x' architecture: description: 'The target architecture (x86, x64) of the Python interpreter.' @@ -13,4 +14,4 @@ runs: main: 'dist/index.js' branding: icon: 'code' - color: 'yellow' \ No newline at end of file + color: 'yellow' diff --git a/yaml-lint-config.yml b/yaml-lint-config.yml index addf0aa..52bd3a1 100644 --- a/yaml-lint-config.yml +++ b/yaml-lint-config.yml @@ -1,7 +1,7 @@ extends: default rules: - # 80 chars should be enough, but don't fail if a line is longer + # 120 chars should be enough, but don't fail if a line is longer line-length: - max: 80 + max: 120 level: warning