Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
aa1b3c3
feat(runtime): expose process descriptor and thread metrics (#622)
KooshaPari Jul 29, 2026
952a16d
ci: update .github/workflows/ci.yml
KooshaPari Jul 29, 2026
4cc8e2c
ci: update .github/workflows/trunk-check.yml
KooshaPari Jul 29, 2026
85be43c
ci: update .github/workflows/scorecard.yml
KooshaPari Jul 29, 2026
5aa64b3
ci: update .github/stale.yml
KooshaPari Jul 29, 2026
821f4b4
ci: update .trunk/trunk.yaml
KooshaPari Jul 29, 2026
9101d29
ci: update renovate.json
KooshaPari Jul 29, 2026
95588c5
ci: update .pre-commit-config.yaml
KooshaPari Jul 29, 2026
f778876
ci: add .mergify.yml
KooshaPari Aug 1, 2026
dc60aa5
ci: add .github/workflows/ci.yml
KooshaPari Aug 1, 2026
534e033
ci: add .github/workflows/trunk-check.yml
KooshaPari Aug 1, 2026
eb0f2dd
ci: add .github/workflows/scorecard.yml
KooshaPari Aug 1, 2026
0fcb1d3
ci: add .github/stale.yml
KooshaPari Aug 1, 2026
7517789
ci: add .circleci/config.yml
KooshaPari Aug 1, 2026
7239445
ci: add .trunk/trunk.yaml
KooshaPari Aug 1, 2026
2d7d460
ci: add trunk.yaml
KooshaPari Aug 1, 2026
79f6f34
ci: add renovate.json
KooshaPari Aug 1, 2026
be65d4d
ci: add .pre-commit-config.yaml
KooshaPari Aug 1, 2026
63a8bb2
ci: add .mergify.yml
KooshaPari Aug 1, 2026
e1c5b14
ci: add .github/workflows/ci.yml
KooshaPari Aug 1, 2026
1a83eeb
ci: add .github/workflows/trunk-check.yml
KooshaPari Aug 1, 2026
9addd1c
ci: add .github/workflows/scorecard.yml
KooshaPari Aug 1, 2026
beab644
ci: add .github/stale.yml
KooshaPari Aug 1, 2026
74eb207
ci: add .circleci/config.yml
KooshaPari Aug 1, 2026
d909e7c
ci: add .trunk/trunk.yaml
KooshaPari Aug 1, 2026
4f20024
ci: add trunk.yaml
KooshaPari Aug 1, 2026
0a0811e
ci: add renovate.json
KooshaPari Aug 1, 2026
5c7975f
ci: add .pre-commit-config.yaml
KooshaPari Aug 1, 2026
4d378c8
ci: add .mergify.yml
KooshaPari Aug 1, 2026
ce4ec99
ci: add .github/workflows/ci.yml
KooshaPari Aug 1, 2026
dba897e
ci: add .github/workflows/trunk-check.yml
KooshaPari Aug 1, 2026
42b9b31
ci: add .github/workflows/scorecard.yml
KooshaPari Aug 1, 2026
8c02c5c
ci: add .github/stale.yml
KooshaPari Aug 1, 2026
48d6387
ci: add .circleci/config.yml
KooshaPari Aug 1, 2026
ee43585
ci: add .trunk/trunk.yaml
KooshaPari Aug 1, 2026
fec16ee
ci: add trunk.yaml
KooshaPari Aug 1, 2026
b0bee7d
ci: add renovate.json
KooshaPari Aug 1, 2026
fd799be
ci: add .pre-commit-config.yaml
KooshaPari Aug 1, 2026
15b7ae8
fix(api): document dashboard asset route
Jul 29, 2026
87f4da5
fix(fuse): unblock cargo build — add missing FuseBackend/select_backe…
Jul 29, 2026
328d0b9
refactor(desktop): P1-4 + P1-5 — remove ProcessTableView ref + dedup …
Jul 29, 2026
1918967
chore+fix: bridge external session diff + restore dropped P0 IPC fields
Aug 1, 2026
986832f
fix(sharecli): IPCClient retry timeout + ProcessesPage empty-state re…
Aug 1, 2026
04903a5
feat(ShareCLICore): AppState — connection-state machine + retry telem…
Aug 1, 2026
9622bb9
feat(ShareCLICore): AppState — connection-state machine + retry telem…
Aug 1, 2026
962b0ee
feat(ShareCLITray): SpawnView — persistent spawn history (P1-7)
Aug 1, 2026
6ad74f8
chore: gitignore .build/ (Swift build cache)
Aug 2, 2026
8aa2bf3
chore: gitignore .build/ (SwiftPM/Xcode build cache)
Aug 2, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
56 changes: 56 additions & 0 deletions .github/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
# =============================================================================
# Stale Bot — Auto-close stale issues and PRs
# =============================================================================
# Free via GitHub App: https://github.com/apps/stale
# Prevents issue rot, keeps backlog clean
# =============================================================================

# Configuration for Stale - https://github.com/probot/stale

# Number of days of inactivity before an issue becomes stale
daysUntilStale: 30

# Number of days of inactivity before a stale issue is closed
daysUntilClose: 7

# Only issues or pull requests with all of these labels are checked if stale.
# Defaults to `[]` (disabled).
onlyLabels: []

# Issues or pull requests with these labels will never be considered stale.
exemptLabels:
- pinned
- security
- bug
- enhancement
- critical
- dependencies

# Set to true to ignore issues in a project (defaults to false)
exemptProjects: false

# Set to true to ignore issues in a milestone (defaults to false)
exemptMilestones: false

# Set to true to ignore issues with an assignee (defaults to false)
exemptAssignees: false

# Label to use when marking as stale
staleLabel: stale

# Comment to post when marking as stale. Set to `false` to disable
markComment: >
This issue/PR has been automatically marked as stale because it has not had
recent activity. It will be closed in 7 days if no further activity occurs.

# Comment to post when closing a stale issue. Set to `false` to disable
closeComment: false

# Limit to only `issues` or `pulls`
only: null

# Maximum number of operations per hour (GitHub rate limit)
maximumPerHour: 10

# Limit the number of stale issues per run
limitPerRun: 50
Loading