Skip to content

fix(deps): bump docker/setup-qemu-action from 2 to 3 #324

fix(deps): bump docker/setup-qemu-action from 2 to 3

fix(deps): bump docker/setup-qemu-action from 2 to 3 #324

Workflow file for this run

name: 'The Pipeline'
on:
push:
branches:
- main
pull_request:
branches:
- main
concurrency:
group: ci-${{ github.ref }}-1
cancel-in-progress: true
jobs:
extract-branch:
name: 'Fetch branch'
runs-on: ubuntu-latest
outputs:
current_branch: ${{ steps.get-branch.outputs.current_branch }}
steps:
- name: Extract branch name 🕊
id: get-branch
run: echo "current_branch=${GITHUB_REF##*/}" >> $GITHUB_OUTPUT
ci:
name: 'CI'
needs:
- extract-branch
uses: acalcutt/tileserver-gl/.github/workflows/ci.yml@main
ct:
name: 'CT'
needs:
- extract-branch
uses: acalcutt/tileserver-gl/.github/workflows/ct.yml@main
automerger:
name: 'Automerge Dependabot PRs'
needs:
- ci
- ct
- extract-branch
if: >
github.event_name == 'pull_request' && github.event.pull_request.user.login == 'dependabot[bot]'
uses: acalcutt/tileserver-gl/.github/workflows/automerger.yml@main