-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Post results with incoming webhook URL instead of API token (#32)
* Add postMessage to reuse code of slack API * Add posting with incoming webhook on Slack * Add posting with incoming webhook on Discord * Fix typo
- Loading branch information
Showing
5 changed files
with
65 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# syntax=docker/dockerfile:1 | ||
FROM golang:1.20 AS builder | ||
FROM golang:1.21 AS builder | ||
|
||
WORKDIR /src | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# syntax=docker/dockerfile:1 | ||
FROM golang:1.20 AS builder | ||
FROM golang:1.21 AS builder | ||
|
||
WORKDIR /src | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,22 @@ | ||
module github.com/musaprg/rarejobctl | ||
|
||
go 1.19 | ||
go 1.21 | ||
|
||
toolchain go1.21.0 | ||
|
||
require ( | ||
github.com/disgoorg/disgo v0.17.0 | ||
github.com/slack-go/slack v0.12.2 | ||
github.com/tebeka/selenium v0.9.9 | ||
go.uber.org/zap v1.25.0 | ||
) | ||
|
||
require ( | ||
github.com/blang/semver v3.5.1+incompatible // indirect | ||
github.com/gorilla/websocket v1.4.2 // indirect | ||
go.uber.org/atomic v1.7.0 // indirect | ||
github.com/disgoorg/json v1.1.0 // indirect | ||
github.com/disgoorg/snowflake/v2 v2.0.1 // indirect | ||
github.com/gorilla/websocket v1.5.1 // indirect | ||
github.com/sasha-s/go-csync v0.0.0-20210812194225-61421b77c44b // indirect | ||
go.uber.org/multierr v1.10.0 // indirect | ||
golang.org/x/net v0.0.0-20200602114024-627f9648deb9 // indirect | ||
golang.org/x/net v0.18.0 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters