-
Notifications
You must be signed in to change notification settings - Fork 219
Add GitHub Actions documentation for quickstart image #702
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
Co-authored-by: sagpatil <[email protected]>
README.md
Outdated
- name: Start Stellar network | ||
uses: stellar/quickstart@main | ||
with: | ||
network: "local" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should not list network
and enable
here because it uses default values anyway.
Otherwise very good description
README.md
Outdated
```yaml | ||
- name: Run Stellar quickstart | ||
uses: stellar/quickstart@main | ||
with: | ||
tag: "latest" # Image tag (default: "latest") | ||
image: "docker.io/stellar/quickstart" # Image name (default: "docker.io/stellar/quickstart") | ||
network: "local" # Network: local, testnet, futurenet (default: "local") | ||
enable: "core,horizon,rpc" # Services to enable (default: "core,horizon,rpc") | ||
enable_logs: "true" # Enable container logs (default: "true") | ||
``` | ||
|
||
**Advanced Health Check Options:** | ||
- `health_interval`: Time between health checks in seconds (default: "10") | ||
- `health_timeout`: Maximum time for each health check in seconds (default: "5") | ||
- `health_retries`: Number of consecutive failures before marking unhealthy (default: "50") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Move the advanced health check options into the yaml block describing each config option.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Moved the advanced health check options into the main YAML configuration block as requested. Commit 1bf7f9b
Co-authored-by: leighmcculloch <[email protected]>
Head branch was pushed to by a user without write access
Adds comprehensive documentation for the GitHub Action introduced in PR #671, making it discoverable for developers who want to use the quickstart image in their CI/CD workflows.
What's Added
Usage Examples
Basic usage:
With configuration:
Full workflow example for testing:
The documentation covers all available inputs and provides clear guidance on platform support, making the action easily discoverable and usable.
Fixes #684.
💬 Share your feedback on Copilot coding agent for the chance to win a $200 gift card! Click here to start the survey.