@ferrflow/darwin-x64 4.0.2 → 4.2.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 +22 -0
- package/bin/ferrflow +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -527,6 +527,28 @@ 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
|
+
That's it — no `setup-node`, no extra dependencies. FerrFlow's Rust binary handles the OIDC exchange directly, so minimal self-hosted runners work out of the box.
|
|
549
|
+
|
|
550
|
+
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).
|
|
551
|
+
|
|
530
552
|
## License
|
|
531
553
|
|
|
532
554
|
[MPL-2.0](LICENSE)
|
package/bin/ferrflow
CHANGED
|
Binary file
|
package/package.json
CHANGED