Stormkit can automatically deploy your applications on each commit or on each pull request. By default, every application will come with auto deployments not enabled. You can enable this option from the application's settings page.
Auto Deploy
dropdown and select an optionIn this case, Stormkit will not automatically deploy any changes on your repository.
When this option is selected, Stormkit deploys every branch that receives a commit automatically.
You can specify a regexp/glob pattern to filter which branches to automatically deploy.
Commit patterns allow you to selectively deploy commits that match specific patterns. This feature works in conjunction with your environment's branch configuration.
You can use either:
# Deploy only commits that start with "release/"
release\/*
# Deploy commits that contain "hotfix"
.*hotfix.*
# Deploy commits matching semantic versioning
v[0-9]+\.[0-9]+\.[0-9]+