Skip to content

Commit

Permalink
Merge branch 'master' into fix-channels
Browse files Browse the repository at this point in the history
  • Loading branch information
wass3r committed Jun 23, 2020
2 parents 5e53175 + 727df35 commit f2991dd
Show file tree
Hide file tree
Showing 7 changed files with 99 additions and 33 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/publish_latest.yml
Expand Up @@ -16,9 +16,6 @@ jobs:
- run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*

- name: create docker images
env:
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
run: |
make docker-create-all
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/release.yml
Expand Up @@ -5,7 +5,7 @@ name: release
on:
push:
tags:
- "[0-9]+.[0-9]+.[0-9]+*"
- '[0-9]+.[0-9]+.[0-9]+*'

# pipeline to execute
jobs:
Expand Down Expand Up @@ -37,6 +37,10 @@ jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: clone
uses: actions/checkout@v2
- run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*

- name: create docker images
run: |
make docker-create-all
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -132,7 +132,7 @@ docker-push: docker-login

@for flavor in $(DOCKER_FLAVORS); do \
echo "Pushing $(DOCKER_IMAGE):$$flavor to docker hub"; \
docker push $(DOCKER_IMAGE):$$flavor \
docker push $(DOCKER_IMAGE):$$flavor; \
docker push $(DOCKER_IMAGE):$$flavor-$(VERSION); \
done

Expand Down
7 changes: 4 additions & 3 deletions README.md
Expand Up @@ -11,7 +11,6 @@
[![GitHub release](https://img.shields.io/github/release/target/flottbot.svg)](https://github.com/target/flottbot/releases/latest)
[![Coverage Status](https://coveralls.io/repos/target/flottbot/badge.svg?branch=master)](https://coveralls.io/r/target/flottbot?branch=master)
[![Go Report Card](https://goreportcard.com/badge/github.com/target/flottbot)](https://goreportcard.com/report/github.com/target/flottbot)
[![docker](https://img.shields.io/docker/build/target/flottbot.svg)](https://hub.docker.com/r/target/flottbot)

Flottbot is a chatbot framework written in Go. But there's a catch, you don't need to know a lick of Go! Configure your bot via YAML files, extend functionality by writing scripts in your favorite language.

Expand Down Expand Up @@ -43,11 +42,13 @@ We currently provide a few Docker images:

[target/flottbot](https://hub.docker.com/r/target/flottbot) - Alpine image and flottbot binary installed

[target/flottbot:ruby](https://hub.docker.com/r/target/flottbot) - Alpine image, flottbot binary, and ruby v2.5 installed
[target/flottbot:ruby](https://hub.docker.com/r/target/flottbot) - Alpine image, flottbot binary, and ruby v2.7 installed

[target/flottbot:golang](https://hub.docker.com/r/target/flottbot) - Alpine image, flottbot binary, and golang v1.14 installed

[target/flottbot:python](https://hub.docker.com/r/target/flottbot) - Alpine image, flottbot binary, and python v3.7 installed
[target/flottbot:python](https://hub.docker.com/r/target/flottbot) - Alpine image, flottbot binary, and python v3.8 installed

_Note: We highly recommend pinning your image to a version, ie. `target/flottbot:0.5.0` or `target/flottbot:ruby-0.5.0`_

## Helm Chart

Expand Down
31 changes: 23 additions & 8 deletions go.mod
Expand Up @@ -6,19 +6,34 @@ require (
github.com/Masterminds/goutils v1.1.0 // indirect
github.com/Masterminds/semver v1.5.0
github.com/Masterminds/sprig v2.22.0+incompatible
github.com/bwmarrin/discordgo v0.20.2
github.com/bwmarrin/discordgo v0.20.3
github.com/fsnotify/fsnotify v1.4.9 // indirect
github.com/golang/protobuf v1.4.0 // indirect
github.com/google/uuid v1.1.1 // indirect
github.com/gorilla/mux v1.7.4
github.com/gorilla/websocket v1.4.1 // indirect
github.com/huandu/xstrings v1.3.0 // indirect
github.com/imdario/mergo v0.3.8 // indirect
github.com/gorilla/websocket v1.4.2 // indirect
github.com/huandu/xstrings v1.3.1 // indirect
github.com/imdario/mergo v0.3.9 // indirect
github.com/konsorten/go-windows-terminal-sequences v1.0.2 // indirect
github.com/mitchellh/copystructure v1.0.0 // indirect
github.com/mitchellh/mapstructure v1.2.2 // indirect
github.com/mitchellh/reflectwalk v1.0.1 // indirect
github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826
github.com/pelletier/go-toml v1.7.0 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/prometheus/client_golang v1.5.0
github.com/prometheus/client_golang v1.5.1
github.com/prometheus/procfs v0.0.11 // indirect
github.com/robfig/cron/v3 v3.0.1
github.com/rs/xid v1.2.1
github.com/sirupsen/logrus v1.4.2
github.com/slack-go/slack v0.6.2
github.com/spf13/viper v1.6.2
github.com/sirupsen/logrus v1.5.0
github.com/slack-go/slack v0.6.4
github.com/spf13/afero v1.2.2 // indirect
github.com/spf13/cast v1.3.1 // indirect
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/spf13/viper v1.6.3
golang.org/x/crypto v0.0.0-20200423211502-4bdfaf469ed5 // indirect
golang.org/x/sys v0.0.0-20200420163511-1957bb5e6d1f // indirect
golang.org/x/text v0.3.2 // indirect
gopkg.in/ini.v1 v1.55.0 // indirect
)

0 comments on commit f2991dd

Please sign in to comment.