From 32f2676f1fa145294800314f99dc71a289c9869e Mon Sep 17 00:00:00 2001 From: Levi Bostian Date: Mon, 18 Mar 2024 11:59:31 -0500 Subject: [PATCH] ci: revert action that annotations eslint results to fix ci on main Reverts https://github.com/customerio/customerio-reactnative/pull/240 The action that we use to parse eslint results had a major version release (`v3`) and then changed the release to `v3-beta`. Until the project creates a git tag indicating more clearly that v3 is ready for prod, I think we should continue to use v2 to keep `main` CI checks passing. commit-id:6e52990a --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 92943bba..b98b3a37 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -35,9 +35,9 @@ jobs: - run: yarn lint:report - name: Annotate Code Linting Results - uses: ataylorme/eslint-annotate-action@v3 + uses: ataylorme/eslint-annotate-action@v2 with: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + repo-token: ${{ secrets.GITHUB_TOKEN }} check-name: 'eslint results' only-pr-files: false fail-on-warning: false