From 7160117ddfefea1456081479dd61886ba7e36799 Mon Sep 17 00:00:00 2001 From: Mark Powers Date: Tue, 24 Sep 2024 14:40:48 -0500 Subject: [PATCH] Fix stylelint reporter Previous running not working for some reason, updating to use given example spec https://github.com/reviewdog/action-stylelint --- .github/workflows/lint-style.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/lint-style.yml b/.github/workflows/lint-style.yml index d2933534..3e606522 100644 --- a/.github/workflows/lint-style.yml +++ b/.github/workflows/lint-style.yml @@ -6,7 +6,9 @@ jobs: name: runner / stylelint runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - uses: reviewdog/action-stylelint@v1 + - uses: actions/checkout@v4 + - name: stylelint + uses: reviewdog/action-stylelint@v1 with: - github_token: ${{ secrets.github_token }} + reporter: github-pr-review + stylelint_input: '**/*.css'