-
Notifications
You must be signed in to change notification settings - Fork 2.8k
fix: ensure retry-config and success-criteria are populated in openapi spec #3575
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
+171
−10
Merged
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,28 @@ | ||
| #!/usr/bin/env bash | ||
| set -e | ||
|
|
||
| # Check if OpenAPI schema is up-to-date | ||
| # This script generates the OpenAPI schema and compares it with the committed version | ||
|
|
||
| echo "🔍 Checking OpenAPI schema is up-to-date..." | ||
|
|
||
| # Check if the generated schema differs from the committed version | ||
| echo "🔍 Comparing generated schema with committed version..." | ||
| if ! git diff --exit-code ui/desktop/openapi.json ui/desktop/src/api/; then | ||
| echo "" | ||
| echo "❌ OpenAPI schema is out of date!" | ||
| echo "" | ||
| echo "The generated OpenAPI schema differs from the committed version." | ||
| echo "This usually means that API types were added or modified without updating the schema." | ||
| echo "" | ||
| echo "To fix this issue:" | ||
| echo "1. Run 'just generate-openapi' locally" | ||
| echo "2. Commit the changes to ui/desktop/openapi.json and ui/desktop/src/api/" | ||
| echo "3. Push your changes" | ||
| echo "" | ||
| echo "Changes detected:" | ||
| git diff ui/desktop/openapi.json ui/desktop/src/api/ | ||
| exit 1 | ||
| fi | ||
|
|
||
| echo "✅ OpenAPI schema is up-to-date" |
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.
should this move to the lint check (we can rename that) for front end that runs in parallel? (not sure if it has to wait for cargo to do its thing however)
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.
I originally thought about keeping it in a different job. We do need cargo to compile to check. The check is adding about ~2 seconds (on my machine)
We can move it out if it becomes a problem.