@cryptotaxi247 / netdata-1 / commits / 149fc9c1c

Rename the review workflow and be consistent about workflow and job names. (#8332)

* Rename review workflow * Use consistent workflow and job names

James Mills committed Mar 7, 2020 at 06:42 UTC 149fc9c1c34270724203ee1860a277dc03bc3b44
1 file changed +8 -5
.github/workflows/review.yml renamed
+8 -5
@@ -1,5 +1,8 @@
1 -name: reviewdog
2 -on: [pull_request]
1 +---
2 +# Runs various ReviewDog based checks against PR with suggested changes to improve quality
3 +name: Review
4 +on:
5 + pull_request:
6 jobs:
7 eslint:
8 name: eslint
@@ -7,7 +10,7 @@ jobs:
10 steps:
11 - name: Git clone repository
12 uses: actions/checkout@v2
10 - - name: eslint
13 + - name: Run eslint
14 uses: reviewdog/action-eslint@v1
15 with:
16 github_token: ${{ secrets.GITHUB_TOKEN }}
@@ -20,7 +23,7 @@ jobs:
23 steps:
24 - name: Git clone repository
25 uses: actions/checkout@v2
23 - - name: shellcheck
26 + - name: Run shellcheck
27 uses: reviewdog/action-shellcheck@v1
28 with:
29 github_token: ${{ secrets.GITHUB_TOKEN }}
@@ -35,7 +38,7 @@ jobs:
38 steps:
39 - name: Git clone repository
40 uses: actions/checkout@v2
38 - - name: yamllint
41 + - name: Run yamllint
42 uses: reviewdog/action-yamllint@v1
43 with:
44 github_token: ${{ secrets.GITHUB_TOKEN }}