Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,8 @@ and store it in GitHub Actions secrets. It refuses to overwrite

| Input | Required | Modes | Description |
|---|---:|---|---|
| `token` | yes | notify, execute | SemaFore service token stored as a GitHub Actions secret. |
| `token` | yes | notify, execute, bootstrap via root Action | SemaFore service token stored as a GitHub Actions secret. |
| `bootstrap_token` | bootstrap via root Action only | bootstrap | Bootstrap-capability token stored as a GitHub Actions secret. |
| `device_key` | notify only | notify | Device private key stored as a GitHub Actions secret. |
| `mode` | yes | all | `notify`, `execute`, or `bootstrap`. |
| `target` | notify only | notify | `org`, `group:<id>`, or `user:<id>`. |
Expand Down
3 changes: 3 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ inputs:
token:
required: true
description: 'Service token. Store this as a GitHub Actions secret.'
bootstrap_token:
required: false
description: 'Bootstrap-capability token. Required for bootstrap mode when invoking the root Action.'
device_key:
required: false
description: 'Device private key. Required for notify mode and must come from a GitHub Actions secret.'
Expand Down
Loading