Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
2b75f46
feat: Add bymehul/ghk integration.
yonas Jan 8, 2026
1651930
fix(autofix.ci): Apply automated fixes
autofix-ci[bot] Jan 9, 2026
2096385
feat: Add organization from config file when creating new repos.
yonas Jan 10, 2026
2d9ca2a
fix(autofix.ci): Apply automated fixes
autofix-ci[bot] Jan 10, 2026
0485d2e
chore: Remove mod.rs in lib.
yonas Jan 10, 2026
1128e77
feat: Add env.rs to load .env, .env.$APP_ENV, and .env.local.
yonas Jan 10, 2026
e89dbc3
fix: Fix plugin tests.
yonas Jan 11, 2026
e5b5bcb
fix: Initial commit should use Convential Commits.
yonas Jan 13, 2026
928c768
fix: Update README and smaller fixes.
yonas Jan 13, 2026
adfdda5
fix: Set custom CLI description.
yonas Jan 13, 2026
9fcd1c6
build(deps): Update deps.
yonas Jan 13, 2026
c58d017
build(deps): Switch to yonasBSD/script.rs
yonas Jan 13, 2026
ae6a0bc
feat: Add prune command.
yonas Jan 13, 2026
acdbfdd
fix(autofix.ci): Apply automated fixes
autofix-ci[bot] Jan 15, 2026
1e8ce24
refactor: Split github command into smaller files.
yonas Jan 15, 2026
1506cb0
chore: Add log().done()
yonas Jan 15, 2026
8b86f75
fix(autofix.ci): Apply automated fixes
autofix-ci[bot] Jan 15, 2026
31a1204
feat: Desired feature - Re-run failed workflow runs.
yonas Jan 15, 2026
39cfb16
feat: Auto-detect local repo.
yonas Jan 17, 2026
d32960e
fix(autofix.ci): Apply automated fixes
autofix-ci[bot] Jan 17, 2026
bb36904
chore: Plan to support cleaning build artifacts.
yonas Jan 23, 2026
c48060c
feat: Create default ruleset when creating new repo.
yonas Jan 26, 2026
75e7038
fix(autofix.ci): Apply automated fixes
autofix-ci[bot] Jan 26, 2026
44d31a1
feat: Enable Dependency Graph and Security Updates when creating a repo.
yonas Jan 26, 2026
9d64b65
fix(ci): formatting.
yonas Jan 31, 2026
5f53395
fix(ci): wip(llm).
yonas Jan 31, 2026
720adb0
fix(ci): wip(llm) p2.
yonas Jan 31, 2026
5399db1
fix(ci): wip(llm).
yonas Jan 31, 2026
b1eb56c
fix(ci): wip(llm).
yonas Jan 31, 2026
5c5d30f
fix(ci): wip(llm).
yonas Feb 1, 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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,6 @@ coverage/

# Tribble
.tribble/

# Crash dumps
**/*.core
7 changes: 5 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[workspace]
#members = ["backpack/cli", "backpack/lib", "backpack/e2e", "xtask"]
members = ["backpack/cli", "backpack/lib", "xtask"]
#members = ["backpack/lib", "xtask"]
resolver = "2"

[workspace.dependencies]
Expand All @@ -9,5 +9,8 @@ reqwest = { version = "0.13", default-features = false, features = ["blocking",
anyhow = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.48.0", features = ["macros", "process", "rt-multi-thread"] }
tokio = { version = "1.49.0", features = ["macros", "process", "rt-multi-thread"] }
tracing = "0.1.44"
once_cell = "1.18.0"
tracing-subscriber = "0.3"
terminal-banner = "0.4.1"
Loading
Loading