Skip to content

Commit 7cdde45

Browse files
committed
ci: Add single job to join on, which will be used as required checks in github
Note: This change (once tested) will be broight into operator-templating
1 parent fe043ef commit 7cdde45

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/build.yaml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -223,6 +223,21 @@ jobs:
223223
image-index-uri: oci.stackable.tech/sdp/${{ env.OPERATOR_NAME }}:${{ needs.build-container-image.outputs.operator-version }}
224224
image-architecture: ${{ matrix.arch }}
225225

226+
227+
# This job is a required check in GitHub Settings for this repository.
228+
# It saves us having to list many required jobs, or work around dynamically
229+
# named jobs (since there is no concept of required settings).
230+
finished:
231+
# WARNING: Do not change the name unless you will also be changing the
232+
# Required Checks (in branch protections) in GitHub settings.
233+
name: Finished Build and Publish
234+
needs:
235+
- openshift-preflight-check
236+
- publish-helm-chart
237+
runs-on: ubuntu-latest
238+
steps:
239+
- run: echo "We are done here"
240+
226241
notify:
227242
name: Failure Notification
228243
needs:

0 commit comments

Comments
 (0)