From 9e4187c44dc492e2800391c9cb71299fa5cda362 Mon Sep 17 00:00:00 2001 From: Vinayak Kulkarni <19776877+vinayakkulkarni@users.noreply.github.com> Date: Thu, 11 Aug 2022 11:21:28 +0530 Subject: [PATCH] chore: remove `main` branch Signed-off-by: Vinayak Kulkarni <19776877+vinayakkulkarni@users.noreply.github.com> --- .github/workflows/pipeline.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index 62181a5..fe6bc57 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -3,11 +3,9 @@ name: 'The Pipeline' on: push: branches: - - main - master pull_request: branches: - - main - master jobs: @@ -24,19 +22,19 @@ jobs: name: 'CI' needs: - extract-branch - uses: maptiler/tileserver-gl/.github/workflows/ci.yml@main + uses: maptiler/tileserver-gl/.github/workflows/ci.yml@master automerger: name: 'Auto Merge Bot PRs' needs: - ci if: ${{ github.event_name == 'pull_request' && github.event.pull_request.user.login == 'dependabot[bot]' }} - uses: maptiler/tileserver-gl/.github/workflows/automerger.yml@main + uses: maptiler/tileserver-gl/.github/workflows/automerger.yml@master builder: name: 'Build & Publish Docker Image(s)' needs: - extract-branch - ci if: ${{ github.event_name == 'push' }} - uses: maptiler/tileserver-gl/.github/workflows/builder.yml@main + uses: maptiler/tileserver-gl/.github/workflows/builder.yml@master with: branch: ${{ needs.extract-branch.outputs.current_branch }}