We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Basti can be integrated into github actions workflows but it's a bit hacky:
Here is how I did it:
npx basti connect --rds-instance $DB_INSTANCE_NAME --local-port $DB_PORT & npx wait-on -t 60000 tcp:$DB_PORT
Notice the & at the end of the connect command to put basti into background mode. One issue is it never stops the connection.
&
connect
Would be great to have official github action which can incapsulate connection/wait and teardown using runs.post
The text was updated successfully, but these errors were encountered:
Great idea! 👍
Sorry, something went wrong.
This might be a good first issue for somebody with GitHub actions implementation experience
No branches or pull requests
Basti can be integrated into github actions workflows but it's a bit hacky:
Here is how I did it:
Notice the
&
at the end of theconnect
command to put basti into background mode.One issue is it never stops the connection.
Would be great to have official github action which can incapsulate connection/wait and teardown using runs.post
The text was updated successfully, but these errors were encountered: