Heroku with YAML

YAML parameters for Heroku

NameTypeDescription
action RequiredStringThe ID of the action.
type RequiredStringThe type of the action. Should be set to HEROKU.
application_name RequiredStringThe ID of the application.
integration RequiredStringThe ID of the integration.
use_custom_gitignoreBooleanWhen set to false the push will ignore paths listed in .gitignore file.
isolatedBooleanWhen set to true, action will push only repository files (without artifacts).
deployment_excludesString[]The paths and/or files that will be left out during the push. Only works when use_custom_gitignoreis set to true.
without_forceBooleanDefines whether the --force flag should be used when invoking the git push command or not.

YAML example for Heroku

yaml
actions: - action: "Deploy to buddy-app" type: "HEROKU" application_name: "buddy-app" integration: "my_integration" use_custom_gitignore: false isolated: true

Last modified on Sep 23, 2024