Conversation
Update existing workflows to use the organization's shared workflows: * build.yaml * dependabot-changelog-update.yaml * release.yaml Additionally, split the build workflow into separate publication and testing workflows, so that PRs can run the test build without needed secrets. Also, refined the build trigger rules to reduce redundant workflow runs.
saligiad
commented
Jun 25, 2026
Contributor
Author
There was a problem hiding this comment.
The main difference I noticed between this and the shared build workflow is that the shared workflow includes a step to upload the JAR file to build the container, but that seems to be skipped by the conditional check:
- name: Upload application JAR for container build
-> if: vars.APP_JAR_NAME != ''
uses: actions/upload-artifact@v7
with:
...
Contributor
There was a problem hiding this comment.
Yes, the application repositories have additional variables for the container workflow (see webhook forwarder's settings for an example). If the variable isn't defined the upload is skipped.
saligiad
marked this pull request as ready for review
June 25, 2026 22:07
| # - reopened | ||
| # - ready_for_review | ||
| # - labeled | ||
| # - unlabeled |
Contributor
There was a problem hiding this comment.
This is the change that I subsequently reverted, so you don't need to replicate it in the other repos. It's harmless because the workflow is disabled, and we'll probably just be deleting it.
heathharrelson
approved these changes
Jun 25, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Overview
Update existing workflows to use the organization's shared workflows:
Additionally, split the build workflow into separate publication and testing workflows, so that PRs can run the test build without needed secrets. Also, refined the build trigger rules to reduce redundant workflow runs.
Issues
CIS-3773
[x] Added to CHANGELOG.md