summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorJames Mills <prologic@shortcircuit.net.au>2020-03-07 06:42:00 +1000
committerGitHub <noreply@github.com>2020-03-07 06:42:00 +1000
commit149fc9c1c34270724203ee1860a277dc03bc3b44 (patch)
tree1c26b645a8742003338a451a687a905ece5cb137 /.github
parent7ea79411ae1d73575c45944d9ea1ca9c27bdb34e (diff)
Rename the review workflow and be consistent about workflow and job names. (#8332)
* Rename review workflow * Use consistent workflow and job names
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/review.yml (renamed from .github/workflows/reviewdog.yml)13
1 files changed, 8 insertions, 5 deletions
diff --git a/.github/workflows/reviewdog.yml b/.github/workflows/review.yml
index ee3b6f2a54..d1277634c1 100644
--- a/.github/workflows/reviewdog.yml
+++ b/.github/workflows/review.yml
@@ -1,5 +1,8 @@
-name: reviewdog
-on: [pull_request]
+---
+# Runs various ReviewDog based checks against PR with suggested changes to improve quality
+name: Review
+on:
+ pull_request:
jobs:
eslint:
name: eslint
@@ -7,7 +10,7 @@ jobs:
steps:
- name: Git clone repository
uses: actions/checkout@v2
- - name: eslint
+ - name: Run eslint
uses: reviewdog/action-eslint@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
@@ -20,7 +23,7 @@ jobs:
steps:
- name: Git clone repository
uses: actions/checkout@v2
- - name: shellcheck
+ - name: Run shellcheck
uses: reviewdog/action-shellcheck@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
@@ -35,7 +38,7 @@ jobs:
steps:
- name: Git clone repository
uses: actions/checkout@v2
- - name: yamllint
+ - name: Run yamllint
uses: reviewdog/action-yamllint@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}