Heroku with YAML

YAML parameters for Heroku

Name Type Description
action Required String The ID of the action.
type Required String The type of the action. Should be set to HEROKU.
application_name Required String The ID of the application.
integration Required String The ID of the integration.
use_custom_gitignore Boolean When set to false the push will ignore paths listed in .gitignore file.
isolated Boolean When set to true, action will push only repository files (without artifacts).
deployment_excludes String[] The paths and/or files that will be left out during the push. Only works when use_custom_gitignoreis set to true.
without_force Boolean Defines 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 Mar 4, 2025