Run pull request validation once through native CI

This commit is contained in:
2026-09-11 08:37:26 +00:00
parent 7d64b94d7a
commit 2cdd7585bb
+8 -3
View File
@@ -2,11 +2,15 @@ name: build-image
on: on:
push: push:
branches: [main] branches:
- main
pull_request:
branches:
- main
jobs: jobs:
docker: docker:
runs-on: ubuntu-latest runs-on: butler-ci
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Select relevant delivery work - name: Select relevant delivery work
@@ -21,4 +25,5 @@ jobs:
bash scripts/ci-select.sh bash scripts/ci-select.sh
- name: Build image - name: Build image
if: ${{ steps.delivery.outputs.run == 'true' }} if: ${{ steps.delivery.outputs.run == 'true' }}
run: make docker-build IMAGE_TAG=${{ gitea.sha }} run: |
make ci-fast IMAGE_TAG=${{ gitea.sha }}