go build -o ~/bin/test-2 test-2.go$ go run main.go
bar a b| name: foo |
| query($owner: String!, $repo: String!, $pr: Int!) { | |
| repository(owner: $owner, name: $repo) { | |
| pullRequest(number: $pr) { | |
| author { | |
| login | |
| } | |
| commits(first: 30) { | |
| nodes { | |
| commit { | |
| author { |
| package main | |
| import ( | |
| "fmt" | |
| "log" | |
| "github.com/zalando/go-keyring" | |
| ) | |
| func main() { |
| package main | |
| import ( | |
| "fmt" | |
| "log" | |
| "github.com/99designs/keyring" | |
| ) | |
| func main() { |
go build -o ~/bin/test-2 test-2.go$ go run main.go
bar a b| package main | |
| import ( | |
| "fmt" | |
| "io" | |
| "log" | |
| "net/http" | |
| "os" | |
| ) |
| package main | |
| import ( | |
| "errors" | |
| "fmt" | |
| "io" | |
| "log" | |
| "net/http" | |
| "github.com/codingsince1985/checksum" |
| name: Close Renovate pull requests | |
| on: | |
| workflow_dispatch: | |
| inputs: {} | |
| schedule: | |
| # The "*" (#42, asterisk) character has special semantics in YAML, so this | |
| # string has to be quoted. | |
| - cron: '0/15 * * * *' | |
| permissions: |
| package foo | |
| func Foo() {} |
| curl -u admin:admin -H 'Content-Type: application/json' -H 'Accept: application/json' -H 'X-Requested-By: api' -X POST 'http://127.0.0.1:9000/api/events/definitions?pretty=true' -d ' | |
| { | |
| "title": "new-event-definition", | |
| "description": "", | |
| "priority": 2, | |
| "alert": true, | |
| "config": { | |
| "type": "aggregation-v1", | |
| "query": "test", | |
| "streams": [ |