docs: add README files for all shared actions

This commit is contained in:
2026-06-13 00:59:06 -07:00
parent c44d07c87d
commit ff42edcb94
4 changed files with 78 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
# Deploy to Coolify
Triggers a remote Coolify redeployment for a service/app using the Coolify webhook trigger URL and API access token.
## Inputs
| Name | Description | Required | Default |
| :--- | :--- | :--- | :--- |
| `webhook` | The webhook URL to trigger the deployment. | Yes | |
| `token` | The bearer token to authorize the webhook call. | Yes | |
## Example Usage
```yaml
- name: Deploy to Coolify
uses: rodydavis/shared-actions/coolify-deploy@main
with:
webhook: ${{ secrets.COOLIFY_WEBHOOK }}
token: ${{ secrets.COOLIFY_TOKEN }}
```