Support new flags in actions - #1630
Merged
Merged
Conversation
…schema validation
ramya18101
marked this pull request as ready for review
August 27, 2026 09:00
duedares-rvj
previously approved these changes
Aug 31, 2026
feat: add --schema and --query flags to actions list command for enhanced filtering and schema display
duedares-rvj
approved these changes
Aug 31, 2026
ramya18101
enabled auto-merge (squash)
August 31, 2026 07:04
duedares-rvj
approved these changes
Aug 31, 2026
Merged
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.
🔧 Changes
Adds schema discovery and JSON input to
auth0 actions create/auth0 actions update, driven by the Auth0 Management API OpenAPI schema. Payloads are validated locally before any API call — making the commands easy to drive from AI agents and automation.New flags:
--schema— Print the request payload schema and exit (--jsonfor machine-readable output).--data— Supply the full payload as JSON: inline, a file (@action.json), or stdin or piped. Mutually exclusive with granular input flags .📚 References
🔬 Testing
internal/openapi/*_test.go,internal/cli/data_json_test.go(schema load/resolve, validation, error enhancement,--dataparsing).--schema(text +--json);--datainline /@file/ stdin; invalid payloads report all errors pre-call;400includes expected schema.📝 Checklist