-
Notifications
You must be signed in to change notification settings - Fork 12
chore(workflows): Simplify sync-docs-from-node workflow #257
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
4e1b926
chore(workflows): Update sync-docs-from-node workflow to use version …
dohernandez 7213b7a
chore(workflows): Simplify sync-docs-from-node workflow to use single…
dohernandez 8056410
chore(workflows): Rename tag retrieval step to version and update ref…
dohernandez e99f5b5
chore(workflows): Add validation for missing version in repository_di…
dohernandez 2b57909
chore(workflows): Sanitize version string for branch name in sync-doc…
dohernandez 3d2624c
chore(workflows): Add branch existence check and force push with leas…
dohernandez a546dc4
chore(workflows): Replace echo with printf for improved formatting in…
dohernandez 5f8b4a6
chore(workflows): Refactor regex matching to use a dedicated function…
dohernandez fcc8deb
chore(workflows): Improve error message clarity by showing relative p…
dohernandez 3f5eba7
chore(workflows): Use printf for improved formatting of missing sourc…
dohernandez 973d808
chore(workflows): Use printf with explicit format for improved consis…
dohernandez 51718c9
chore(workflows): Update API paths in workflows and documentation for…
dohernandez 713085e
chore(workflows): Add debug output for config file processing in sync…
dohernandez a9e00ed
chore(workflows): Enhance debug output for config sanitization and co…
dohernandez fe559f1
chore(workflows): Enhance debug output for config sanitization and co…
dohernandez fb48029
chore(workflows): Improve debug output and error handling in config s…
dohernandez 493a9db
chore(workflows): Enhance PR creation logic to check for open and clo…
dohernandez 1e91472
chore(workflows): Skip handling of _meta.json to prevent unintended m…
dohernandez File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🛠️ Refactor suggestion
Regex patterns may be unreliable for YAML parsing.
The regex patterns have several potential issues:
port:\s*\d+|\S.*is too specific and may miss other admin configuration fieldsConsider more robust patterns:
Or consider keeping the YAML parsing approach for reliability, as structured data parsing is inherently more robust than regex for this use case.
📝 Committable suggestion
🤖 Prompt for AI Agents