Merge pull request #185 from docker/dependabot/github_actions/docker/… #304
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build-docker-engine | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
on: | |
workflow_dispatch: | |
inputs: | |
pkgs: | |
description: 'Packages to build (minimal, all or space separated list)' | |
default: 'minimal' | |
required: false | |
type: string | |
fail-fast: | |
description: 'Fail fast' | |
default: true | |
required: false | |
type: boolean | |
push: | |
branches: | |
- 'main' | |
- 'docker/[0-9]+.[0-9]+' | |
paths: | |
- '.github/workflows/.build.yml' | |
- '.github/workflows/build-docker-engine.yml' | |
- 'common/**' | |
- 'pkg/docker-engine/**' | |
pull_request: | |
branches: | |
- 'main' | |
- 'docker/[0-9]+.[0-9]+' | |
paths: | |
- '.github/workflows/.build.yml' | |
- '.github/workflows/build-docker-engine.yml' | |
- 'common/**' | |
- 'pkg/docker-engine/**' | |
jobs: | |
run: | |
uses: ./.github/workflows/.build.yml | |
with: | |
name: docker-engine | |
secrets: inherit |