##### ISSUE TYPE
- Bug fix Pull Request
##### SUMMARY
project_name field was made mandatory in new goreleaser version, due to this make container-build was failing
added this field in .gorelease.yml to fix this issue
##### ISSUE TYPE
- Bug fix Pull Request
##### SUMMARY
The lastTimestamp field of the event is sometimes null and sometimes not empty, but these are normal, just because the old and new APIS are called differently. So we need to add a judgment here, using the EventTime field if lastTimestamp is empty
Fixes https://github.com/infracloudio/botkube/issues/548
Signed-off-by: Prasad Ghangal <prasad.ghangal@gmail.com>
##### ISSUE TYPE
- Bug fix Pull Request
##### SUMMARY
The latest goreleaser doesn't support non-semver image tags.
This PR replaces `latest` tags with `v9.99.9-dev` to support latest version of goreleaser
##### ISSUE TYPE
- Feature Pull Request
##### SUMMARY
larksuit(https://www.larksuite.com/en_us/) is a collaboration and communication platform and used by many customers in the world. It has a friendly open platform for 3rd parity apps and bots to intergate.
The PR is adding the support of lark notification and bot in botkube.
Fixes #XXX
##### ISSUE TYPE
- Feature Pull Request
##### SUMMARY
Fixes#549 so vulnerabilities would be automatically reported inside CI pipeline. Scan results will be sent to GitHub Security tab as well.
## Description
`strings.ToLower/strings.ToUpper` will have to allocate memory for the new strings, as well as convert both strings fully, even if they differ on the very first byte. On the other hand, `strings.EqualFold` compares the strings one character at a time. It doesn't need to create two intermediate strings and can return as soon as the first non-matching character has been found.
##### ISSUE TYPE
- Feature Pull Request
##### SUMMARY
This provides the ability to directly specify a kubeconfig for botkube to use when installing via helm. In addition, it adds a value that will disable service account token mounting. This provides the ability to run botkube against other clusters that it is not currently running in.