generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update inputs and docs adds new inputs and uses kebab-case for consistency with chrnorm/deployment-action@v2 * update dist * CI: update args in test workflow
- Loading branch information
Showing
7 changed files
with
127 additions
and
53 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
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,31 +1,45 @@ | ||
name: "Deployment Status" | ||
description: "Creates a GitHub Deployment status update" | ||
author: "chrnorm" | ||
name: 'Deployment Status' | ||
description: 'Creates a GitHub Deployment status update' | ||
author: 'chrnorm' | ||
branding: | ||
icon: arrow-up | ||
color: gray-dark | ||
inputs: | ||
repo: | ||
description: 'A custom repository to create the deployment for. Defaults to the repo the action is running in.' | ||
required: false | ||
owner: | ||
description: 'A custom owner to create the deployment for. Defaults to the repo owner the action is running in.' | ||
required: false | ||
state: | ||
description: "State for the deployment" | ||
description: 'State for the deployment' | ||
required: true | ||
token: | ||
description: "Github repository token" | ||
description: 'Github repository token' | ||
required: true | ||
log_url: | ||
description: "Sets the URL for deployment output" | ||
log-url: | ||
description: 'Sets the URL for deployment output' | ||
required: false | ||
target_url: | ||
description: "Same as log_url" | ||
environment-url: | ||
description: 'Sets the URL for accessing your environment' | ||
required: false | ||
environment_url: | ||
description: "Sets the URL for accessing your environment" | ||
default: '' | ||
environment: | ||
description: 'Name for the target deployment environment, which can be changed when setting a deploy status. Must be one of production, staging, qa, or can be undefined.' | ||
required: false | ||
description: | ||
description: "Descriptive message about the deployment" | ||
description: 'Descriptive message about the deployment' | ||
required: false | ||
deployment_id: | ||
description: "The ID of the deployment" | ||
deployment-id: | ||
description: 'The ID of the deployment' | ||
required: true | ||
auto-inactive: | ||
description: "Adds a new inactive status to all prior non-transient, non-production environment deployments with the same repository and environment name as the created status's deployment. An inactive status is only added to deployments that had a success state." | ||
required: false | ||
default: 'true' | ||
github-base-url: | ||
description: 'Changes the API base URL for a GitHub Enterprise server.' | ||
required: false | ||
runs: | ||
using: "node12" | ||
main: "dist/index.js" | ||
using: 'node12' | ||
main: 'dist/index.js' |
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
Large diffs are not rendered by default.
Oops, something went wrong.
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