mirror of
https://github.com/techknowlogick/faas-lgtmbot
synced 2024-11-22 15:02:02 +01:00
16 lines
449 B
YAML
16 lines
449 B
YAML
version: 1.0
|
|
provider:
|
|
name: openfaas
|
|
functions:
|
|
lgtmbot:
|
|
lang: golang-middleware
|
|
handler: ./lgtmbot
|
|
image: techknowlogick/lgtmbot:latest
|
|
secrets:
|
|
- webhook-secret # random string generated by you
|
|
- gitea-host # host of your gitea instance, ex. https://gitea.example.com/
|
|
- gitea-token # gitea api token generated from https://gitea.example.com/user/settings/applications
|
|
build_args:
|
|
GO111MODULE: on
|
|
|