From e4ce3327b585ca7ef1afaa615f4ed60a1ebc4d28 Mon Sep 17 00:00:00 2001 From: Anton Gilgur <4970083+agilgur5@users.noreply.github.com> Date: Fri, 5 Apr 2024 22:03:42 -0400 Subject: [PATCH] ci(deps): remove auto `yarn-deduplicate` on dependabot PRs (#12892) Signed-off-by: Anton Gilgur --- .github/workflows/ci-build.yaml | 9 --------- 1 file changed, 9 deletions(-) diff --git a/.github/workflows/ci-build.yaml b/.github/workflows/ci-build.yaml index d9ecbae22b07..25535c7cdef2 100644 --- a/.github/workflows/ci-build.yaml +++ b/.github/workflows/ci-build.yaml @@ -415,15 +415,6 @@ jobs: - run: yarn --cwd ui test - run: yarn --cwd ui lint - run: yarn --cwd ui deduplicate - # Deduplicate UI deps for dependabot PRs - - name: Commit deduplicated yarn.lock for Dependabot PRs - if: github.actor == 'dependabot[bot]' - run: | - git config --global user.name 'github-actions[bot]' - git config --global user.email 'github-actions[bot]@users.noreply.github.com' - git add ui/yarn.lock - git commit -s --allow-empty -m 'chore: deduplicate yarn.lock' - git push # if lint or deduplicate make changes that are not in the PR, fail the build - name: Check if lint & deduplicate made changes not present in the PR run: git diff --exit-code