From 5000fca6642ade6c4c20578a8ee5c981febdf95b Mon Sep 17 00:00:00 2001
From: stevenhorsman <steven@uk.ibm.com>
Date: Tue, 25 Feb 2025 11:38:49 +0000
Subject: [PATCH] workflows: Add build-checks to manual CI

Currently the ci-on-push workflow that runs on PRs runs
two jobs: gatekeeper-skipper.yaml and ci.yaml. In order
to test things like for the error
```
too many workflows are referenced, total: 21, limit: 20
```
on topic branches, we need ci-devel.yaml to have an
extra workflow to match ci-on-push, so add the build-checks
as this is helpful to run on topic branches anyway.

Signed-off-by: stevenhorsman <steven@uk.ibm.com>
---
 .github/workflows/ci-devel.yaml | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/.github/workflows/ci-devel.yaml b/.github/workflows/ci-devel.yaml
index a50794bf66..df780e7c87 100644
--- a/.github/workflows/ci-devel.yaml
+++ b/.github/workflows/ci-devel.yaml
@@ -11,3 +11,8 @@ jobs:
       tag: ${{ github.sha }}-dev
       target-branch: ${{ github.ref_name }}
     secrets: inherit
+
+  build-checks:
+    uses: ./.github/workflows/build-checks.yaml
+    with:
+      instance: ubuntu-22.04