This repository was archived by the owner on Apr 18, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +6
-2
lines changed Expand file tree Collapse file tree 4 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 1+ terraform-aws-github-ci-0.4.2 (2017-04-12)
2+
3+ * Fixed #10: Webhook fails due to invalid reference
4+
15terraform-aws-github-ci-0.4.1 (2017-04-01)
26
37 * Fixed #5: Removed default for namespace variable
@@ -18,7 +22,7 @@ terraform-aws-github-ci-0.2.0 (2017-12-02)
1822
1923terraform-aws-github-ci-0.1.1 (2017-11-15)
2024
21- * Fixed missing lambda distribution files
25+ * Fixed missing distribution files
2226 * Fixed invalid source location for initial status badge
2327
2428terraform-aws-github-ci-0.1.0 (2017-11-15)
Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ if (process.env.GITHUB_OAUTH_TOKEN)
9090 */
9191export default ( event : GitHubWebhookEvent , _ : Context , cb : Callback ) => {
9292 event . Records . reduce ( ( promise , record ) => {
93- const type = record . Sns . MessageAttributes ! [ "X-Github-Event" ] . StringValue
93+ const type = ( record . Sns . MessageAttributes ! [ "X-Github-Event" ] as any ) . Value
9494 const message : GitHubSourceChange = JSON . parse ( record . Sns . Message )
9595
9696 /* Retrieve commit SHA and reference */
You can’t perform that action at this time.
0 commit comments