From 5cac659f4c432aefaab9dd1fcce7a97ad8019451 Mon Sep 17 00:00:00 2001 From: Tobias Koppers Date: Fri, 28 Oct 2022 22:23:19 +0200 Subject: [PATCH] fix workflow links (#2472) --- .github/workflows/pr-turbopack-bench.yml | 2 +- .github/workflows/test-cargo.yml | 18 +++++++++--------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/pr-turbopack-bench.yml b/.github/workflows/pr-turbopack-bench.yml index 26d6ffe665655..394ca26abf651 100644 --- a/.github/workflows/pr-turbopack-bench.yml +++ b/.github/workflows/pr-turbopack-bench.yml @@ -61,4 +61,4 @@ jobs: with: name: Benchmark PR / bench (pull_request) status: "${{ job.status }}" - url: https://github.com/vercel/the-three-body/actions/runs/${{ github.run_id }} + url: https://github.com/vercel/turbo/actions/runs/${{ github.run_id }} diff --git a/.github/workflows/test-cargo.yml b/.github/workflows/test-cargo.yml index 648e9246ba618..faeaac7c05862 100644 --- a/.github/workflows/test-cargo.yml +++ b/.github/workflows/test-cargo.yml @@ -45,7 +45,7 @@ jobs: with: name: Test / test - ${{ matrix.os.name }} (pull_request) description: Checkout... - url: https://github.com/vercel/the-three-body/actions/runs/${{ github.run_id }} + url: https://github.com/vercel/turbo/actions/runs/${{ github.run_id }} - name: Set git to use LF line endings run: | @@ -62,7 +62,7 @@ jobs: with: name: Test / test - ${{ matrix.os.name }} (pull_request) description: Restoring cache... - url: https://github.com/vercel/the-three-body/actions/runs/${{ github.run_id }} + url: https://github.com/vercel/turbo/actions/runs/${{ github.run_id }} - name: Setup rust uses: actions-rs/toolchain@v1 @@ -88,7 +88,7 @@ jobs: with: name: Test / test - ${{ matrix.os.name }} (pull_request) description: Installing Node.js dependencies... - url: https://github.com/vercel/the-three-body/actions/runs/${{ github.run_id }} + url: https://github.com/vercel/turbo/actions/runs/${{ github.run_id }} - name: Run node-gyp install run: npx node-gyp install @@ -106,7 +106,7 @@ jobs: with: name: Test / test - ${{ matrix.os.name }} (pull_request) description: Testing... - url: https://github.com/vercel/the-three-body/actions/runs/${{ github.run_id }} + url: https://github.com/vercel/turbo/actions/runs/${{ github.run_id }} - name: Install nextest run: curl -LsSf https://get.nexte.st/latest/${{ matrix.os.nextest }} | tar zxf - -C ${CARGO_HOME:-~/.cargo}/bin @@ -125,7 +125,7 @@ jobs: with: name: Test / test - ${{ matrix.os.name }} (pull_request) status: "${{ job.status }}" - url: https://github.com/vercel/the-three-body/actions/runs/${{ github.run_id }} + url: https://github.com/vercel/turbo/actions/runs/${{ github.run_id }} test-bench: # for edited events it should only run on base changes @@ -151,7 +151,7 @@ jobs: with: name: Test / test-bench - ${{ matrix.os.name }} (pull_request) description: Checkout... - url: https://github.com/vercel/the-three-body/actions/runs/${{ github.run_id }} + url: https://github.com/vercel/turbo/actions/runs/${{ github.run_id }} - name: Set git to use LF run: | git config --global core.autocrlf false @@ -165,7 +165,7 @@ jobs: with: name: Test / test-bench - ${{ matrix.os.name }} (pull_request) description: Restoring cache... - url: https://github.com/vercel/the-three-body/actions/runs/${{ github.run_id }} + url: https://github.com/vercel/turbo/actions/runs/${{ github.run_id }} - name: Setup rust uses: actions-rs/toolchain@v1 @@ -186,7 +186,7 @@ jobs: with: name: Test / test-bench - ${{ matrix.os.name }} (pull_request) description: Testing... - url: https://github.com/vercel/the-three-body/actions/runs/${{ github.run_id }} + url: https://github.com/vercel/turbo/actions/runs/${{ github.run_id }} - name: Run cargo test on benchmarks uses: actions-rs/cargo@v1 @@ -203,4 +203,4 @@ jobs: with: name: Test / test-bench - ${{ matrix.os.name }} (pull_request) status: "${{ job.status }}" - url: https://github.com/vercel/the-three-body/actions/runs/${{ github.run_id }} + url: https://github.com/vercel/turbo/actions/runs/${{ github.run_id }}