From f4d1fe07c2121ffe7ff1e2ee87db02682b503f3c Mon Sep 17 00:00:00 2001 From: Alex Boten Date: Thu, 16 Nov 2023 15:54:54 -0800 Subject: [PATCH] [chore] fix issuegenerator path (#29318) workflows have been failing and then trying to use `issuegenerator` to create issues, but the path for the tool was incorrect. see https://github.com/open-telemetry/opentelemetry-collector-contrib/actions/runs/6895702499/job/18761957296 as an example Signed-off-by: Alex Boten --- .github/workflows/load-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/load-tests.yml b/.github/workflows/load-tests.yml index c9f3fbdf7dee..0fe7a85f7a4a 100644 --- a/.github/workflows/load-tests.yml +++ b/.github/workflows/load-tests.yml @@ -115,7 +115,7 @@ jobs: - name: GitHub Issue Generator if: ${{ failure() && github.ref == 'refs/heads/main' }} - run: issuegenerator $TEST_RESULTS + run: ./.tools/issuegenerator $TEST_RESULTS update-benchmarks: runs-on: ubuntu-latest