-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Flesh out a skeleton for
trigger-deploy
action
- Loading branch information
Showing
8 changed files
with
283 additions
and
65 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 |
---|---|---|
|
@@ -20,5 +20,3 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: ./ | ||
with: | ||
milliseconds: 1000 |
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,11 +1,16 @@ | ||
name: 'Your name here' | ||
description: 'Provide a description here' | ||
author: 'Your name or organization here' | ||
name: 'Trigger Deploy' | ||
description: 'Can either trigger a deployment to a specific environment / namespace, or trigger a number of deployments based on the event which triggered it.' | ||
author: 'switcher.ie' | ||
inputs: | ||
milliseconds: # change this | ||
required: true | ||
description: 'input description here' | ||
default: 'default value if applicable' | ||
environment: | ||
description: 'The environment to deploy to. Either "staging" or "production".' | ||
namespace: | ||
description: 'The namespace to deploy to. Only valid if `environment` is "staging".' | ||
ref: | ||
description: 'The commit reference to deploy.' | ||
outputs: | ||
deployments: | ||
description: 'JSON-encoded array of GitHub deployments' | ||
runs: | ||
using: 'node12' | ||
main: 'dist/index.js' |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.