Skip to content

Commit

Permalink
fix(actions): fix name ref
Browse files Browse the repository at this point in the history
  • Loading branch information
thatkookooguy committed Nov 11, 2020
1 parent c21316d commit ae34cd0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/eslint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:

jobs:
run-linters:
name: Run linters
name: lint
runs-on: ubuntu-latest

steps:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ jobs:
uses: lewagon/wait-on-check-action@v0.1
with:
ref: master # can be commit SHA or tag too
check-name: Run Tests # name of the existing check
check-name: tests # name of the existing check
repo-token: ${{ secrets.GITHUB_TOKEN }}
wait-interval: 20 # seconds
- name: Wait on lint
uses: lewagon/wait-on-check-action@v0.1
with:
ref: master # can be commit SHA or tag too
check-name: Lint # name of the existing check
check-name: lint # name of the existing check
repo-token: ${{ secrets.GITHUB_TOKEN }}
wait-interval: 20 # seconds
- name: Checkout
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ on:

jobs:
build:
name: tests
runs-on: ubuntu-latest

strategy:
Expand Down

0 comments on commit ae34cd0

Please sign in to comment.