mirror of
https://github.com/docker/build-push-action.git
synced 2024-11-06 00:35:53 -05:00
4e201a2f03
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
38 lines
965 B
YAML
38 lines
965 B
YAML
name: setup-qemu-precheckin
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
- v2-working-branch # remove when merged to master
|
|
paths:
|
|
- .github/workflows/setup-qemu-precheckin.yml
|
|
- setup-qemu/**
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
- v2-working-branch # remove when merged to master
|
|
paths:
|
|
- .github/workflows/setup-qemu-precheckin.yml
|
|
- setup-qemu/**
|
|
|
|
jobs:
|
|
pre-checkin:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
-
|
|
name: Checkout
|
|
uses: actions/checkout@v2.3.1
|
|
-
|
|
name: Install
|
|
run: yarn --cwd ./setup-qemu/ install
|
|
-
|
|
name: Pre-checkin
|
|
run: yarn --cwd ./setup-qemu/ run pre-checkin
|
|
-
|
|
name: Check for uncommitted changes
|
|
run: |
|
|
if [[ `git status --porcelain` ]]; then
|
|
git status --porcelain
|
|
echo "::warning::Found changes. Please run 'yarn --cwd ./setup-qemu/ run pre-checkin' and push"
|
|
fi
|