We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e8e47f4 + aba9954 commit 081536eCopy full SHA for 081536e
.github/workflows/lint-yaml.yml
@@ -0,0 +1,12 @@
1
+name: Lint YAML
2
+on: [pull_request]
3
+jobs:
4
+ lint:
5
+ runs-on: ubuntu-latest
6
+ steps:
7
+ - uses: actions/checkout@master
8
+ - name: Lint action.yml
9
+ uses: ibiqlik/action-yamllint@master
10
+ with:
11
+ file_or_dir: action.yml
12
+ config_file: yaml-lint-config.yml
yaml-lint-config.yml
@@ -0,0 +1,7 @@
+extends: default
+
+rules:
+ # 80 chars should be enough, but don't fail if a line is longer
+ line-length:
+ max: 80
+ level: warning
0 commit comments