chore: remove main branch
Signed-off-by: Vinayak Kulkarni <19776877+vinayakkulkarni@users.noreply.github.com>
This commit is contained in:
parent
662f6d9968
commit
9e4187c44d
1 changed files with 3 additions and 5 deletions
8
.github/workflows/pipeline.yml
vendored
8
.github/workflows/pipeline.yml
vendored
|
|
@ -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 }}
|
||||
|
|
|
|||
Loading…
Reference in a new issue