File tree Expand file tree Collapse file tree 1 file changed +14
-0
lines changed
template/.github/workflows Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -223,6 +223,20 @@ 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+ # This job is a required check in GitHub Settings for this repository.
227+ # It saves us having to list many required jobs, or work around dynamically
228+ # named jobs (since there is no concept of required settings).
229+ finished:
230+ # WARNING: Do not change the name unless you will also be changing the
231+ # Required Checks (in branch protections) in GitHub settings.
232+ name: Finished Build and Publish
233+ needs:
234+ - openshift-preflight-check
235+ - publish-helm-chart
236+ runs-on: ubuntu-latest
237+ steps:
238+ - run: echo "We are done here"
239+
226240 notify:
227241 name: Failure Notification
228242 needs:
You can’t perform that action at this time.
0 commit comments