We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4de01fc commit 012c997Copy full SHA for 012c997
1 file changed
api/github.go
@@ -26,11 +26,6 @@ func GithubEventHandler(c *gin.Context) {
26
if checkSuiteEvent.Action != "requested" && checkSuiteEvent.Action != "rerequested" {
27
return
28
}
29
-
30
- go func() {
31
- runner.CreateGR25Runs(checkSuiteEvent.CheckSuite.HeadSha)
32
- }()
33
34
} else if ghEventType == "check_run" {
35
var checkRunEvent model.GithubCheckRunEvent
36
if err := c.ShouldBindJSON(&checkRunEvent); err != nil {
@@ -45,10 +40,6 @@ func GithubEventHandler(c *gin.Context) {
45
40
if checkRunEvent.Action != "rerequested" {
46
41
47
42
48
49
50
- runner.CreateGR25Runs(checkRunEvent.CheckRun.HeadSha)
51
52
43
53
44
54
c.JSON(http.StatusOK, gin.H{"message": "Github event received"})
0 commit comments