This repository has been archived by the owner on Aug 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make changes to deploy the action (#2)
- Add docker labels - Add CircleCI badge
- Loading branch information
1 parent
fef2240
commit d1a66b3
Showing
4 changed files
with
23 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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
.git | ||
.gitignore | ||
action.yml |
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
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
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,21 +1,22 @@ | ||
# Meta data for the action. | ||
|
||
name: 'Review App Deployment Status' | ||
name: 'Heroku Review App Deployment Status' | ||
author: 'niteo.co' | ||
description: 'A Github Action to test the deployment status of a Heroku Review App.' | ||
branding: | ||
icon: 'git-pull-request' | ||
color: 'orange' | ||
|
||
runs: | ||
using: 'docker' | ||
image: 'Dockerfile' | ||
|
||
inputs: | ||
interval: | ||
description: (optional) Interval to check the status. | ||
description: Interval to check the status. | ||
required: false | ||
default: 10 # 10 seconds | ||
accepted_responses: | ||
description: (optional) Status(es) which can be accepted. Separated by comma. | ||
description: Status(es) which can be accepted. Separated by comma. | ||
required: false | ||
default: 200 # All OK status | ||
|
||
branding: | ||
icon: 'activity' | ||
color: 'green' |