@ferrflow/darwin-x64 4.0.1 → 4.1.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/README.md CHANGED
@@ -1,10 +1,10 @@
1
1
  # FerrFlow
2
2
 
3
- [![CI](https://github.com/FerrFlow-Org/FerrFlow/actions/workflows/ci.yml/badge.svg)](https://github.com/FerrFlow-Org/FerrFlow/actions/workflows/ci.yml)
4
- [![Release](https://github.com/FerrFlow-Org/FerrFlow/actions/workflows/release.yml/badge.svg)](https://github.com/FerrFlow-Org/FerrFlow/actions/workflows/release.yml)
5
- [![Latest release](https://img.shields.io/github/v/release/FerrFlow-Org/FerrFlow)](https://github.com/FerrFlow-Org/FerrFlow/releases/latest)
6
- [![Coverage](https://codecov.io/gh/FerrFlow-Org/FerrFlow/graph/badge.svg)](https://codecov.io/gh/FerrFlow-Org/FerrFlow)
7
- [![License](https://img.shields.io/github/license/FerrFlow-Org/FerrFlow)](LICENSE)
3
+ [![CI](https://github.com/FerrLabs/FerrFlow/actions/workflows/ci.yml/badge.svg)](https://github.com/FerrLabs/FerrFlow/actions/workflows/ci.yml)
4
+ [![Release](https://github.com/FerrLabs/FerrFlow/actions/workflows/release.yml/badge.svg)](https://github.com/FerrLabs/FerrFlow/actions/workflows/release.yml)
5
+ [![Latest release](https://img.shields.io/github/v/release/FerrLabs/FerrFlow)](https://github.com/FerrLabs/FerrFlow/releases/latest)
6
+ [![Coverage](https://codecov.io/gh/FerrLabs/FerrFlow/graph/badge.svg)](https://codecov.io/gh/FerrLabs/FerrFlow)
7
+ [![License](https://img.shields.io/github/license/FerrLabs/FerrFlow)](LICENSE)
8
8
  [![Socket Badge](https://badge.socket.dev/npm/package/ferrflow/latest)](https://badge.socket.dev/npm/package/ferrflow/latest)
9
9
  [![Known Vulnerabilities](https://snyk.io/test/npm/ferrflow/badge.svg)](https://snyk.io/test/npm/ferrflow)
10
10
 
@@ -57,7 +57,7 @@ docker run ghcr.io/ferrflow/ferrflow:latest check
57
57
 
58
58
  **Pre-built binaries**
59
59
 
60
- Download from [Releases](https://github.com/FerrFlow-Org/FerrFlow/releases).
60
+ Download from [Releases](https://github.com/FerrLabs/FerrFlow/releases).
61
61
 
62
62
  ## Usage
63
63
 
@@ -108,7 +108,7 @@ ferrflow completions zsh > ~/.zfunc/_ferrflow
108
108
  ferrflow completions fish > ~/.config/fish/completions/ferrflow.fish
109
109
  ```
110
110
 
111
- Pre-generated completion scripts are also available as `ferrflow-completions.tar.gz` in each [GitHub release](https://github.com/FerrFlow-Org/FerrFlow/releases).
111
+ Pre-generated completion scripts are also available as `ferrflow-completions.tar.gz` in each [GitHub release](https://github.com/FerrLabs/FerrFlow/releases).
112
112
 
113
113
  ## Configuration
114
114
 
@@ -527,6 +527,26 @@ release:
527
527
  GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
528
528
  ```
529
529
 
530
+ ### Using the hosted bot (ferrflow[bot])
531
+
532
+ Install the [FerrFlow GitHub App](https://github.com/apps/ferrflow) on your repo or org, then opt in with `bot: true`. Release commits, tags, and GitHub Releases are authored by `ferrflow[bot]` and downstream workflows triggered by those events run normally (unlike the default `GITHUB_TOKEN`, which suppresses them).
533
+
534
+ ```yaml
535
+ permissions:
536
+ id-token: write
537
+ contents: read
538
+
539
+ steps:
540
+ - uses: actions/checkout@v6
541
+ with:
542
+ fetch-depth: 0
543
+ - uses: FerrLabs/FerrFlow@v4
544
+ with:
545
+ bot: true
546
+ ```
547
+
548
+ Three auth modes are supported: `bot: true` uses the hosted FerrFlow App (recommended); `token: <PAT>` uses a personal access token or your own GitHub App token (DIY); omitting both falls back to the workflow's `GITHUB_TOKEN` (simplest, but release events won't trigger downstream workflows).
549
+
530
550
  ## License
531
551
 
532
552
  [MPL-2.0](LICENSE)
package/bin/ferrflow CHANGED
Binary file
package/package.json CHANGED
@@ -10,7 +10,7 @@
10
10
  ],
11
11
  "repository": {
12
12
  "type": "git",
13
- "url": "git+https://github.com/FerrFlow-Org/FerrFlow.git"
13
+ "url": "git+https://github.com/FerrLabs/FerrFlow.git"
14
14
  },
15
- "version": "4.0.1"
15
+ "version": "4.1.0"
16
16
  }