-
-
Notifications
You must be signed in to change notification settings - Fork 50
feat: TUI dashboard fix Interactive TUI Dashboard #277
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
+4,308
−683
Closed
Changes from all commits
Commits
Show all changes
55 commits
Select commit
Hold shift + click to select a range
f7aed07
resolve conflicts
Sahilbhatane 63ff56c
suggestion fix
Sahilbhatane ebdf74e
Test fix and automation security fix
Sahilbhatane 56ee2ed
Fix: make tests Windows-compatible
Sahilbhatane 796ba2b
chore: address static analysis findings
Sahilbhatane d02beaa
cnsversation resolved, plus add changes
Sahilbhatane be90d44
test fixs
Sahilbhatane 2630f4e
No automation needed for QL
Sahilbhatane a11aa3b
Remove duplicate import of CortexCLI
Sahilbhatane 073aa02
style: fix import ordering in dashboard.py
Sahilbhatane 30cfca5
security: pin GitHub Actions to full commit hashes
Sahilbhatane 02cef20
resolve suggestion
Sahilbhatane f315f52
Confirmation prompt for install in TUI dashboard
Sahilbhatane a932ccf
Fix suggestions and restre security file
Sahilbhatane 23cf916
Linting
Sahilbhatane 86e6f98
fix suggestions
Sahilbhatane 6046e86
Suggestion fix
Sahilbhatane 250caec
Revert automation.yml changes from PR — restore original file from main
Sahilbhatane 4dce981
Suggestion fix
Sahilbhatane 412efa8
lint fix
Sahilbhatane ec6af22
chore: apply black formatting and fix import ordering
Sahilbhatane b17f976
Merge branch 'main' into issue-244
Sahilbhatane b0cf251
chore: Update to BSL 1.1 license (4-year Apache 2.0 conversion)
mikejmorgan-ai 8046619
refactor: type hints and imports across multiple modules (#611)
Anshgrover23 9cf0667
feat(ci): add stale PR management workflow (#613)
Anshgrover23 bcc35e2
ci: add autofix.ci workflow for automatic formatting fixes (#614)
Anshgrover23 8e65faf
test: Add comprehensive tests for licensing module (#616)
mikejmorgan-ai 36450f6
Merge pull request #618 from Anshgrover23/fix/autofix-ci-cla-and-lint
Anshgrover23 840c282
resolve conflicts
Sahilbhatane f5e3502
suggestion fix
Sahilbhatane b6505d6
Test fix and automation security fix
Sahilbhatane f9e7d8e
Fix: make tests Windows-compatible
Sahilbhatane a82ff80
chore: address static analysis findings
Sahilbhatane cbdcecd
cnsversation resolved, plus add changes
Sahilbhatane e2cbd6c
test fixs
Sahilbhatane e02cf73
No automation needed for QL
Sahilbhatane b484934
Remove duplicate import of CortexCLI
Sahilbhatane 37b61af
style: fix import ordering in dashboard.py
Sahilbhatane c19ce5c
security: pin GitHub Actions to full commit hashes
Sahilbhatane b3a4910
resolve suggestion
Sahilbhatane dd5d6c1
Confirmation prompt for install in TUI dashboard
Sahilbhatane ec07b1c
Fix suggestions and restre security file
Sahilbhatane 7c198a4
Linting
Sahilbhatane bb8bb71
fix suggestions
Sahilbhatane daedde2
Suggestion fix
Sahilbhatane f1617a2
Revert automation.yml changes from PR — restore original file from main
Sahilbhatane 53d4114
Suggestion fix
Sahilbhatane 397b6a0
lint fix
Sahilbhatane 7d2b186
rebase
Sahilbhatane 1a45552
Merge branch 'issue-244' of https://github.com/Sahilbhatane/cortex in…
Sahilbhatane 46f72d3
fix: handle psutil import gracefully to allow test collection in CI
Sahilbhatane 58f06e9
Fix errors and resolve conversations
Sahilbhatane 76416cb
[autofix.ci] apply automated fixes
autofix-ci[bot] f56e3c7
Coverage for test
Sahilbhatane f6ac52e
[autofix.ci] apply automated fixes
autofix-ci[bot] 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,40 @@ | ||
| name: autofix.ci | ||
|
|
||
| on: | ||
| push: | ||
| branches: [main] | ||
| pull_request: | ||
| branches: [main] | ||
|
|
||
| permissions: | ||
| contents: read | ||
|
|
||
| jobs: | ||
| autofix: | ||
| name: Auto-fix formatting | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Checkout | ||
| uses: actions/checkout@v4 | ||
|
|
||
| - name: Set up Python | ||
| uses: actions/setup-python@v5 | ||
| with: | ||
| python-version: "3.11" | ||
|
|
||
| - name: Install formatters | ||
| run: | | ||
| python -m pip install -U pip | ||
| pip install ruff black isort | ||
| - name: Fix with ruff | ||
| run: ruff check . --fix || true | ||
|
|
||
| - name: Format with black | ||
| run: black . --exclude "(venv|\.venv|build|dist)" --line-length 100 | ||
|
|
||
| - name: Sort imports with isort | ||
| run: isort . --profile black --line-length 100 | ||
|
|
||
| - name: Apply autofix | ||
| uses: autofix-ci/action@635ffb0c9798bd160680f18fd73371e355b85f27 | ||
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
Sahilbhatane marked this conversation as resolved.
Show resolved
Hide resolved
|
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,37 @@ | ||
| name: 'Stale PR Management' | ||
|
|
||
| on: | ||
| schedule: | ||
| - cron: '0 0 * * *' # Runs daily at midnight UTC | ||
|
|
||
| jobs: | ||
| stale: | ||
| runs-on: ubuntu-latest | ||
| permissions: | ||
| issues: write | ||
| pull-requests: write | ||
| steps: | ||
| - uses: actions/stale@v9 | ||
| with: | ||
| # PR settings: warn at 7 days, close at 14 days total | ||
| days-before-pr-stale: 7 | ||
| days-before-pr-close: 7 | ||
|
|
||
| stale-pr-label: 'state: inactive' | ||
|
|
||
| stale-pr-message: | | ||
| Action required: PR inactive for 7 days. | ||
| Status update or closure in 7 days. | ||
|
|
||
| close-pr-message: | | ||
| PR closed after 14 days of inactivity. | ||
|
|
||
| # Issue settings: disable for issues (only handle PRs) | ||
| days-before-issue-stale: -1 | ||
| days-before-issue-close: -1 | ||
|
|
||
| # Exempt draft PRs and certain labels | ||
| exempt-draft-pr: true | ||
| exempt-pr-labels: 'work-in-progress,do-not-close' | ||
|
|
||
| repo-token: ${{ secrets.GITHUB_TOKEN }} |
Sahilbhatane marked this conversation as resolved.
Show resolved
Hide resolved
|
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.
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.
Uh oh!
There was an error while loading. Please reload this page.