template: added docs workflows#17
Merged
MaximilianSoerenPollak merged 3 commits intoeclipse-score:mainfrom May 21, 2025
Merged
Conversation
added reusable workflows for building and publishing documentation Addresses: eclipse-score#16 Signed-off-by: Dan Calavrezo <dan.calavrezo.ext@qorix.ai>
License Check Results🚀 The license check job ran with the Bazel command: bazel run //:license-checkStatus: ✅ Passed Click to expand output |
uplifted docs-as-code to version 0.2.4 Addresses: eclipse-score#16 Signed-off-by: Dan Calavrezo <dan.calavrezo.ext@qorix.ai>
Fixed formatting Addresses: eclipse-score#16 Signed-off-by: Dan Calavrezo <dan.calavrezo.ext@qorix.ai>
There was a problem hiding this comment.
Pull Request Overview
This pull request adds two reusable GitHub workflow configurations to support building and publishing project documentation.
- Introduces a documentation build workflow triggered on pull request events, pushes to main, and a merge_group event.
- Adds a daily scheduled documentation cleanup workflow.
Reviewed Changes
Copilot reviewed 2 out of 5 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| .github/workflows/docs.yml | Adds workflow for building documentation using a reusable template |
| .github/workflows/docs-cleanup.yml | Adds workflow for cleaning up docs artifacts on a daily schedule |
Files not reviewed (3)
- .github/actions/deploy-versioned-pages/action.yml: Language not supported
- MODULE.bazel: Language not supported
- docs/index.rst: Language not supported
Comments suppressed due to low confidence (1)
.github/workflows/docs.yml:22
- The event trigger 'merge_group' is not a standard GitHub Actions trigger and may lead to unexpected behavior unless it is a custom implementation. Please verify that this trigger is intentional and documented.
merge_group:
MaximilianSoerenPollak
approved these changes
May 21, 2025
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.
added reusable workflows for building and publishing documentation
Addresses: #16