forked from tiltshift/heroku-promote-app
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3823329
commit d5b56a5
Showing
1 changed file
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,24 @@ | ||
name: "Heroku Pipeline Promote" | ||
description: "Promote an app in a pipeline" | ||
name: "Heroku Run" | ||
description: "Run a command in a dyno." | ||
branding: | ||
icon: "terminal" | ||
color: "purple" | ||
inputs: | ||
heroku_api_key: | ||
description: "This will be used for authentication. You can find it in your heroku homepage account settings" | ||
description: "This will be used for authentication. You can find it in your heroku homepage account settings." | ||
required: true | ||
heroku_email: | ||
description: "Email that you use with heroku" | ||
description: "Email that you use with heroku." | ||
required: true | ||
heroku_app_name: | ||
description: "The appname being promoted" | ||
description: "The name of the app to run the command in." | ||
required: true | ||
command: | ||
description: "Command to run in a dyno" | ||
description: "Command to run." | ||
required: true | ||
outputs: | ||
status: | ||
description: "The Success/Failure of the action" | ||
description: "The Success/Failure of the action." | ||
runs: | ||
using: "node12" | ||
main: "index.js" |