Skip to content

Commit

Permalink
Merge pull request #8 from hardyoyo/fix-reviewdog-workflow
Browse files Browse the repository at this point in the history
fix dotenv-linter invocation in reviewdog workflow
  • Loading branch information
hardyoyo authored Nov 22, 2023
2 parents 4026309 + d73e336 commit 8966041
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/reviewdog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,14 @@ jobs:
reporter: github-pr-review
fail_on_error: true
yamllint_flags: '-d "{extends: default, rules: {truthy: disable}}" .'
# Use dotenv-liknter to lint dotenv files
# Use dotenv-linter to lint dotenv files
dotenv-linter:
name: runner / dotenv-linter
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run dotenv-linter
uses: dontenv-linter/action-dotenv-linter@v2
- uses: actions/checkout@v2
- uses: dotenv-linter/action-dotenv-linter@v2
with:
reporter: github-pr-review # Default is github-pr-check
dotenv_linter_flags: --skip UnorderedKey,LowercaseKey
github_token: ${{ secrets.github_token }}
reporter: github-pr-review
fail_on_error: true

0 comments on commit 8966041

Please sign in to comment.