https://github.com/tonicai/ephemeral-delete-database
https://github.com/tonicai/ephemeral-delete-database
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/tonicai/ephemeral-delete-database
- Owner: TonicAI
- License: mit
- Created: 2025-10-09T19:53:15.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2025-10-22T18:07:14.000Z (8 months ago)
- Last Synced: 2025-10-22T20:21:28.552Z (8 months ago)
- Size: 12.7 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Delete a Tonic Ephemeral database
A GitHub action that deletes a database from Tonic Ephemeral.
Completes successfully if either:
- The database was found and deleted.
- The database was not found.
## Inputs
| Input | Description | Required | Default |
|-------|-------------|----------|---------|
| `ephemeral-url` | URL to the Tonic Ephemeral API. For example: `https://ephemeral.tonic.ai` | No | `https://ephemeral.tonic.ai` |
| `ephemeral-api-key` | API key for authentication. Stored as a secret. | Yes | - |
| `database-entity-id` | Identifier of the database to delete. | Yes | - |
### Usage example
```yaml
- name: Delete ephemeral database
uses: TonicAI/delete-ephemeral-database@v1
with:
ephemeral-api-key: ${{ secrets.EPHEMERAL_API_KEY }}
database-entity-id: ${{ steps.create-db.outputs.database-id }}
```