Skip to content

Commit

Permalink
Merge branch 'next' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanlawson authored May 18, 2024
2 parents f0a5b90 + 3ca0183 commit a1abb42
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,17 @@
name: 'Serverless Github Action'
description: 'Github Action for the Serverless Framework'
name: 'Serverless GitHub Action'
description: 'Wraps the Serverless Framework to enable common Serverless commands'
author: 'Serverless, Inc. <[email protected]> (https://serverless.com)'
branding:
icon: 'zap'
color: 'red'
inputs:
args:
description: 'Arguments passed to `serverless`'
required: false
default: help
entrypoint:
description: 'Serverless entrypoint. For example: `/bin/sh`'
required: false
serverless-version:
description: 'Version of the Serverless Framework to use (default: latest)'
required: false
Expand All @@ -20,3 +27,10 @@ runs:
- ${{ inputs.working-directory }}
- ${{ inputs.serverless-version }}
- ${{ inputs.args }}
entrypoint: ${{ inputs.entrypoint }}

outputs:
version:
description: 'Serverless Framework version'
result:
description: 'Serverless Framework result'

0 comments on commit a1abb42

Please sign in to comment.