-
-
Notifications
You must be signed in to change notification settings - Fork 5
Make gui great again #100
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
Closed
Closed
Make gui great again #100
Changes from all commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
8b12ace
test: Add comprehensive GUIService unit tests
JarbasAl fbdfa88
test: Add comprehensive unit tests for __main__, version, and tui mod…
JarbasAl ae28e06
test: Add tests for service run() and namespace error handling
JarbasAl be9029f
docs: Update TODO.md to reflect completed Phase 1-2 work
JarbasAl 947886a
docs: Update all root documentation to reflect Phase 1-3 completion
JarbasAl c7ecd63
docs: Add QML consolidation plan for GUI ecosystem
JarbasAl e55b80a
docs: Add comprehensive GUI system status across all repos
JarbasAl ec78e4f
docs: Add comprehensive user-facing documentation for OVOS GUI
JarbasAl f66a185
refactor: Remove deprecated modules and bundled QML assets
JarbasAl c9f2273
refactor: Update core modules for simplified architecture
JarbasAl 69f8fb3
build: Migrate to modern Python packaging (pyproject.toml)
JarbasAl f849f57
ci: Update GitHub Actions workflows to use standard gh-automations
JarbasAl de717e5
docs: Update GUI_DESIGN.md with OCP media player template
JarbasAl ce63e63
update
JarbasAl 2960a89
docs: reorganize into hierarchical docs structure with role-based nav…
JarbasAl dc60a7d
docs: add comprehensive documentation reorganization guide
JarbasAl f5c5420
docs: add GUI history section to DEPRECATION_GUIDE, create FAQ
JarbasAl 64c1f25
docs: remove ovos-media references, simplify legacy QML FAQ
JarbasAl 2ad7576
docs: add protocol extensions for shell features
JarbasAl b8f2b3c
docs: standardize bus message namespaces to unified ovos.shell.* patt…
JarbasAl 28eb271
docs: add prominent reference to two-bus architecture in protocol ext…
JarbasAl aa7aa8a
docs: CRITICAL FIX - correct port 8181 access information for clients
JarbasAl 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,10 +1,14 @@ | ||
| name: Run License Tests | ||
| on: | ||
| push: | ||
| workflow_dispatch: | ||
| pull_request: | ||
| branches: | ||
| - master | ||
| pull_request: | ||
| branches: | ||
| - dev | ||
| workflow_dispatch: | ||
|
|
||
| jobs: | ||
| license_tests: | ||
| uses: neongeckocom/.github/.github/workflows/license_tests.yml@master | ||
| uses: OpenVoiceOS/gh-automations/.github/workflows/license-check.yml@dev | ||
| with: | ||
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
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.
🧩 Analysis chain
🏁 Script executed:
Repository: OpenVoiceOS/ovos-gui
Length of output: 101
🏁 Script executed:
Repository: OpenVoiceOS/ovos-gui
Length of output: 302
🌐 Web query:
GitHub Actions reusable workflow empty with block valid syntax💡 Result:
jobs.<job_id>.with(when calling a reusable workflow viauses:) must be a YAML map. So an “emptywith:block” that is parsed asnull(e.g.,with:with nothing under it) is not valid for GitHub Actions’ schema. GitHub documentswithas “a map of inputs that are passed to the called workflow.” [1]Use one of these instead:
Same idea for
jobs.<job_id>.secrets(also a map): omit it, usesecrets: inherit, orsecrets: {}if you truly need an explicit empty map. [1]Sources
[1] GitHub Docs – Workflow syntax:
jobs.<job_id>.with/jobs.<job_id>.secretshttps://docs.github.com/en/enterprise-cloud@latest/actions/reference/workflows-and-actions/workflow-syntaxRemove the empty
with:block.Per GitHub Actions workflow syntax,
jobs.<job_id>.withmust be a YAML map. An emptywith:block (parsed asnull) violates the schema. Omit it entirely since this reusable-workflow call passes no inputs.🛠 Suggested fix
license_tests: uses: OpenVoiceOS/gh-automations/.github/workflows/license-check.yml@dev - with:📝 Committable suggestion
🧰 Tools
🪛 actionlint (1.7.11)
[error] 14-14: "with" section should not be empty. please remove this section if it's unnecessary
(syntax-check)
🤖 Prompt for AI Agents