Skip to content

Start pushing all images to quay.io/konflux-ci #2570

Start pushing all images to quay.io/konflux-ci

Start pushing all images to quay.io/konflux-ci #2570

name: Validate PR - buildah-remote
'on':
pull_request:
branches: [main]
jobs:
go:
name: Check Buildah Remote
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Check buildah remote
run: |
./hack/generate-buildah-remote.sh
if [[ ! -z $(git status -s) ]]
then
echo "buildah-remote is not up to date, run ./hack/generate-buildah-remote.sh"
git --no-pager diff
exit 1
fi