Conversation
🤖 Pull Request summaryUpdates build actions to use centralized build number generation. • Adds Review focus: Verify that existing build processes still reference the correct build number ID and that the centralized action provides the expected outputs.
|
There was a problem hiding this comment.
Pull Request Overview
This PR implements setting build numbers in GitHub Actions by adding a standardized get-build-number step to all build action workflows. The change ensures consistent build number generation across different build systems (Maven, Gradle, NPM, Poetry, and Yarn).
- Adds a "Get build number" step to all build action configurations
- Removes commented-out code from the Poetry build action
- Standardizes the build number generation process across all build tools
Reviewed Changes
Copilot reviewed 5 out of 5 changed files in this pull request and generated 5 comments.
Show a summary per file
| File | Description |
|---|---|
| build-yarn/action.yml | Adds get-build-number step before build parameters setup |
| build-poetry/action.yml | Adds get-build-number step and removes commented-out legacy code |
| build-npm/action.yml | Adds get-build-number step before build parameters setup |
| build-maven/action.yml | Adds get-build-number step before build parameters setup |
| build-gradle/action.yml | Adds get-build-number step before build parameters setup |



BUILD-8678