generated from actions/hello-world-docker-action
-
Notifications
You must be signed in to change notification settings - Fork 0
49 lines (47 loc) · 1.51 KB
/
yamllint.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
name: "yamllint"
on:
push:
branches:
- "main"
pull_request:
branches:
- "main"
types: [ "opened", "synchronize" ]
jobs:
yamllint:
runs-on: "ubuntu-latest"
steps:
- name: "checkout"
uses: "actions/checkout@v4"
- name: "review github actions for development yaml format"
uses: "reviewdog/action-yamllint@v1"
with:
github_token: "${{ secrets.GITHUB_TOKEN }}"
reporter: "github-pr-review"
level: "warning"
yamllint_flags: "-c .yamllint ./.github/workflows/"
fail_on_error: true
- name: "review github actions yaml format"
uses: "reviewdog/action-yamllint@v1"
with:
github_token: "${{ secrets.GITHUB_TOKEN }}"
reporter: "github-pr-review"
level: "warning"
yamllint_flags: "-c .yamllint ./action.yml"
fail_on_error: true
- name: "review rubocop yaml format"
uses: "reviewdog/action-yamllint@v1"
with:
github_token: "${{ secrets.GITHUB_TOKEN }}"
reporter: "github-pr-review"
level: "warning"
yamllint_flags: "-c .yamllint ./.rubocop.yml"
fail_on_error: true
- name: "review dependabot yaml format"
uses: "reviewdog/action-yamllint@v1"
with:
github_token: "${{ secrets.GITHUB_TOKEN }}"
reporter: "github-pr-review"
level: "warning"
yamllint_flags: "-c .yamllint ./.github/dependabot.yml"
fail_on_error: true