From 3616475c6bc0a046459ae452b5637a86f859660f Mon Sep 17 00:00:00 2001 From: Yang Song Date: Tue, 6 Feb 2024 15:02:34 -0500 Subject: [PATCH] [chore] Fix a typo in Tidy workflow (#31085) s/genoteltestbed/genoteltestbedcol --- .github/workflows/tidy-dependencies.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tidy-dependencies.yml b/.github/workflows/tidy-dependencies.yml index d2bf9b474194..9774600f026f 100644 --- a/.github/workflows/tidy-dependencies.yml +++ b/.github/workflows/tidy-dependencies.yml @@ -38,13 +38,13 @@ jobs: - name: Install Tools if: steps.go-cache.outputs.cache-hit != 'true' run: make install-tools - - name: go mod tidy, make genotelcontribcol and make genoteltestbed + - name: go mod tidy, make genotelcontribcol and make genoteltestbedcol run: | - make gotidy && make genotelcontribcol && make genoteltestbed + make gotidy && make genotelcontribcol && make genoteltestbedcol git config user.name opentelemetrybot git config user.email 107717825+opentelemetrybot@users.noreply.github.com - echo "git diff --exit-code || (git add . && git commit -m \"go mod tidy, make genotelcontribcol and make genoteltestbed\" && git push)" - git diff --exit-code || (git add . && git commit -m "go mod tidy, make genotelcontribcol and make genoteltestbed" && git push) + echo "git diff --exit-code || (git add . && git commit -m \"go mod tidy, make genotelcontribcol and make genoteltestbedcol\" && git push)" + git diff --exit-code || (git add . && git commit -m "go mod tidy, make genotelcontribcol and make genoteltestbedcol" && git push) env: GITHUB_TOKEN: ${{ secrets.OPENTELEMETRYBOT_GITHUB_TOKEN }} - uses: actions-ecosystem/action-remove-labels@v1