CI/CD workflow hardening and API-shipping log clarity#4881
Merged
arturcic merged 5 commits intoGitTools:mainfrom Mar 18, 2026
Merged
CI/CD workflow hardening and API-shipping log clarity#4881arturcic merged 5 commits intoGitTools:mainfrom
arturcic merged 5 commits intoGitTools:mainfrom
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR standardizes and hardens CI/CD GitHub Actions workflows while improving the readability/observability of the Public API “mark shipped” automation output.
Changes:
- Update multiple workflows/composite actions for more consistent formatting and standardized checkout/auth/credential patterns.
- Improve
mark-shipped.ps1output to emit an explicit per-target change count and ignore the#nullable enableheader line. - Update artifact/provenance-related composite actions (artifact restore + build provenance attestation) to newer action versions.
Reviewed changes
Copilot reviewed 25 out of 26 changed files in this pull request and generated 4 comments.
Show a summary per file
| File | Description |
|---|---|
| src/mark-shipped.ps1 | Adds per-target API change count logging and header filtering; adds a post-run “changes detected” log. |
| .github/workflows/public-api.yml | Switches to gittools/cicd/checkout + gittools/cicd/git-commit-push for the public API shipping workflow. |
| .github/workflows/mkdocs.yml | Adds workflow_dispatch and switches to gittools/cicd/checkout + gittools/cicd/git-commit-push for docs snippet updates. |
| .github/workflows/winget.yml | Replaces GitHub App token generation with gittools/cicd/github-creds for komac submissions. |
| .github/workflows/homebrew.yml | Replaces GitHub App token generation with gittools/cicd/github-creds and targets gittools-bot/homebrew-core. |
| .github/workflows/gittools-actions.yml | Updates GitHub App credential loading step/action naming and formatting for dispatch automation. |
| .github/workflows/release.yml | Formatting/consistency updates to steps. |
| .github/workflows/new-cli.yml | Formatting/consistency updates to triggers and steps. |
| .github/workflows/format.yml | Formatting/consistency updates to triggers and steps. |
| .github/workflows/docs.yml | Formatting/consistency updates across jobs/steps. |
| .github/workflows/codeql-analysis.yml | Formatting/consistency updates to steps and ordering. |
| .github/workflows/_prepare.yml | Formatting/consistency updates to matrix and steps. |
| .github/workflows/_build.yml | Formatting/consistency updates to matrix and steps. |
| .github/workflows/_unit_tests.yml | Formatting/consistency updates to steps. |
| .github/workflows/_publish.yml | Formatting/consistency updates to steps and env blocks. |
| .github/workflows/_docker.yml | Formatting/consistency updates to steps and conditions. |
| .github/workflows/_docker_manifests.yml | Formatting/consistency updates to steps and conditions. |
| .github/workflows/_artifacts_windows.yml | Formatting/consistency updates to steps. |
| .github/workflows/_artifacts_linux.yml | Formatting/consistency updates to steps and retry command indentation. |
| .github/actions/cache-restore/action.yml | Formatting/consistency updates to composite action steps. |
| .github/actions/artifacts-restore/action.yml | Updates artifact download action version and normalizes step formatting. |
| .github/actions/artifacts-attest/action.yml | Updates provenance attestation action version and normalizes step formatting. |
| .github/actions/docker-setup/action.yml | Fixes composite action indentation/formatting. |
| .github/actions/docker-test/action.yml | Normalizes composite action indentation/formatting. |
| .github/actions/docker-publish/action.yml | Normalizes composite action indentation/formatting. |
| .github/actions/docker-manifests/action.yml | Normalizes composite action indentation/formatting. |
|
Contributor
|
Thank you @arturcic for your contribution! |
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.



Summary
Improve CI/CD consistency and API-shipping observability across the workflow and automation changes in this branch.
Scope
Validation
Issue
Resolves #4880