From 7160117ddfefea1456081479dd61886ba7e36799 Mon Sep 17 00:00:00 2001 From: Mark Powers Date: Tue, 24 Sep 2024 14:40:48 -0500 Subject: [PATCH 1/2] 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' From 9bbbd4f93d41ce6a35c1d8f07b8090e010af6af1 Mon Sep 17 00:00:00 2001 From: Mark Powers Date: Tue, 24 Sep 2024 14:59:09 -0500 Subject: [PATCH 2/2] Remove stylelint --- .github/workflows/lint-style.yml | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 .github/workflows/lint-style.yml diff --git a/.github/workflows/lint-style.yml b/.github/workflows/lint-style.yml deleted file mode 100644 index 3e606522..00000000 --- a/.github/workflows/lint-style.yml +++ /dev/null @@ -1,14 +0,0 @@ ---- -name: reviewdog -on: [pull_request] -jobs: - stylelint: - name: runner / stylelint - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - name: stylelint - uses: reviewdog/action-stylelint@v1 - with: - reporter: github-pr-review - stylelint_input: '**/*.css'