gh-manager-cli 1.30.0 → 1.31.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,16 @@
1
+ # [1.31.0](https://github.com/wiiiimm/gh-manager-cli/compare/v1.30.0...v1.31.0) (2025-09-05)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * prevent workflow loops on automated release commits ([51b1cf8](https://github.com/wiiiimm/gh-manager-cli/commit/51b1cf821703d504d83d458bf441ec5e6ccb5f48))
7
+
8
+
9
+ ### Features
10
+
11
+ * add GitHub sponsorship support with comprehensive platform documentation ([8b4dfcc](https://github.com/wiiiimm/gh-manager-cli/commit/8b4dfcc85bbb735584adf32b0463a93a246dce35))
12
+ * initial setup for GitHub sponsorship feature branch ([749f41d](https://github.com/wiiiimm/gh-manager-cli/commit/749f41d81cf9bff640a7e384a8cd238e627c5c40))
13
+
1
14
  # [1.30.0](https://github.com/wiiiimm/gh-manager-cli/compare/v1.29.0...v1.30.0) (2025-09-05)
2
15
 
3
16
 
package/README.md CHANGED
@@ -319,6 +319,62 @@ pnpm start:debug # run with debug mode enabled
319
319
  pnpm start:dev # run with 5 repos per page and debug mode
320
320
  ```
321
321
 
322
+ ### Release Process
323
+
324
+ The project uses **automated releases** with two complementary workflows:
325
+
326
+ #### 1. Semantic Release (Primary)
327
+ - **Triggers**: On every push to `main` branch
328
+ - **Version Calculation**: Uses [semantic-release](https://semantic-release.gitbook.io/) to analyze commit messages:
329
+ - `feat:` → Minor version bump (1.0.0 → 1.1.0)
330
+ - `fix:` → Patch version bump (1.0.0 → 1.0.1)
331
+ - `BREAKING CHANGE:` → Major version bump (1.0.0 → 2.0.0)
332
+ - **Actions**:
333
+ 1. Analyzes commits since last release
334
+ 2. Calculates new version number
335
+ 3. Updates `package.json`
336
+ 4. Generates changelog
337
+ 5. Creates GitHub release with tag
338
+ 6. Publishes to NPM
339
+ 7. Publishes to GitHub Packages
340
+ 8. Updates Homebrew tap
341
+
342
+ #### 2. Version Change Detection (Backup)
343
+ - **Triggers**: When `package.json` version field changes
344
+ - **Purpose**: Ensures releases happen even with manual version bumps
345
+ - **Actions**:
346
+ 1. Detects version change in `package.json`
347
+ 2. Publishes to NPM if version doesn't exist
348
+ 3. Updates Homebrew formula
349
+ 4. Creates GitHub release
350
+
351
+ #### Release Flow Example
352
+ ```
353
+ Developer creates PR with commits:
354
+ - feat: add new feature
355
+ - fix: resolve bug
356
+
357
+ PR merged to main
358
+
359
+ semantic-release analyzes commits
360
+
361
+ Calculates version: 1.2.3 → 1.3.0 (feat = minor)
362
+
363
+ Updates package.json, creates changelog
364
+
365
+ Publishes everywhere (NPM, GitHub, Homebrew)
366
+ ```
367
+
368
+ #### Manual Release
369
+ To manually trigger a release:
370
+ ```bash
371
+ # Update version in package.json
372
+ npm version patch # or minor/major
373
+ git push origin main
374
+ ```
375
+
376
+ Both NPM and Homebrew will be automatically updated within minutes of any version change.
377
+
322
378
  Environment variables:
323
379
  - `REPOS_PER_FETCH`: Number of repositories to fetch per page (1-50, default: 15)
324
380
  - `GH_MANAGER_DEBUG=1`: Enables debug mode with performance metrics, detailed errors, and console logging
@@ -460,6 +516,18 @@ Highlights on deck:
460
516
  - Bulk selection and actions
461
517
  - Repository renaming
462
518
 
519
+ ## Support & Sponsorship
520
+
521
+ If you find gh-manager-cli useful, consider supporting its development:
522
+
523
+ - 💖 **[GitHub Sponsors](https://github.com/sponsors/wiiiimm)** - Recurring monthly support
524
+ - ☕ **[Ko-fi](https://ko-fi.com/wiiiimm)** - Buy me a coffee (one-time donations)
525
+ - 🎨 **[Buy Me a Coffee](https://buymeacoffee.com/wiiiimm)** - Support with coffee donations
526
+
527
+ Your support helps maintain and improve this project. Thank you! 🙏
528
+
529
+ For a complete list of supported sponsorship platforms, see [docs/SPONSORSHIP_PLATFORMS.md](docs/SPONSORSHIP_PLATFORMS.md).
530
+
463
531
  ## License
464
532
 
465
533
  MIT
package/dist/index.js CHANGED
@@ -31,7 +31,7 @@ var require_package = __commonJS({
31
31
  "package.json"(exports, module) {
32
32
  module.exports = {
33
33
  name: "gh-manager-cli",
34
- version: "1.30.0",
34
+ version: "1.31.0",
35
35
  private: false,
36
36
  description: "TUI terminal app to manage GitHub repos. Clean up your account in 5 minutes. Archive, delete, rename repos with keyboard shortcuts. Alternative to clicking through github.com",
37
37
  license: "MIT",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gh-manager-cli",
3
- "version": "1.30.0",
3
+ "version": "1.31.0",
4
4
  "private": false,
5
5
  "description": "TUI terminal app to manage GitHub repos. Clean up your account in 5 minutes. Archive, delete, rename repos with keyboard shortcuts. Alternative to clicking through github.com",
6
6
  "license": "MIT",