0.0.2 • Published 1 month ago

serverless-deploy-history v0.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
1 month ago

serverlessDeployHistory

  • Create a deployment history when deploying with serverless framework.
    • method
      • slack webhook
NoFieldDesc
1NameAWS Lambda name
2Stagedev, staging, production, ...
3BranchGit Branch name
4RevisionGit Commit hash
5EndAtDeploy end timestamp
6LocalEndAtDeploy end timestamp (Local)
7UserGit User name

Required

  • git
  • nodejs

Installation

  • Using npm
$ npm install --save-dev serverless-deploy-history
  • Using yarn
$ yarn add -D serverless-deploy-history

Usage

Sample: slack webhook

serverless.yaml

  • Plugin
plugins:
  - serverless-deploy-history
  • Custom
custom:
  serverlessDeployHistory:
    slack:
      webhook: 'https://hooks.slack.com/services/~'
      title: 'Sample Deploy History'

serverless.ts

  • Plugin
plugins: [
    ...,
    'serverless-deploy-history'
  ],
  • Custom
custom: {
  serverlessDeployHistory: {
      slack: {
        webhook: 'https://hooks.slack.com/services/~',
        title: 'Sample Deploy History'
      },
    },
  },
}

License