From 46e725e70556675bdfd87c6504bbbfc7ae5991b9 Mon Sep 17 00:00:00 2001 From: Vinayak Kulkarni <19776877+vinayakkulkarni@users.noreply.github.com> Date: Fri, 28 Apr 2023 15:26:59 +0530 Subject: [PATCH] chore: use local workflow instead of repo workflow Signed-off-by: Vinayak Kulkarni <19776877+vinayakkulkarni@users.noreply.github.com> --- .github/workflows/pipeline.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index 8432a18..9874a3f 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -26,12 +26,12 @@ jobs: name: 'CI' needs: - extract-branch - uses: maptiler/tileserver-gl/.github/workflows/ci.yml@master + uses: ./.github/workflows/ci.yml ct: name: 'CT' needs: - extract-branch - uses: maptiler/tileserver-gl/.github/workflows/ct.yml@master + uses: ./.github/workflows/ct.yml automerger: name: 'Automerge Dependabot PRs' needs: @@ -40,4 +40,4 @@ jobs: - extract-branch if: > github.event_name == 'pull_request' && github.event.pull_request.user.login == 'dependabot[bot]' - uses: maptiler/tileserver-gl/.github/workflows/automerger.yml@master + uses: ./.github/workflows/automerger.yml