Skip to content

Commit

Permalink
Merge pull request #5 from arunsathiya/feat/patch2pr
Browse files Browse the repository at this point in the history
feat: automatic patch and PR creation without having to clone
  • Loading branch information
arunsathiya authored Jan 18, 2024
2 parents a987bd5 + eea90f7 commit 77826e9
Show file tree
Hide file tree
Showing 4 changed files with 1,907 additions and 126 deletions.
26 changes: 26 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,28 @@
# If you prefer the allow list template instead of the deny list, see community template:
# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore
#
# Binaries for programs and plugins
*.exe
*.exe~
*.dll
*.so
*.dylib

# Test binary, built with `go test -c`
*.test

# Output of the go coverage tool, specifically when used with LiteIDE
*.out

# Dependency directories (remove the comment below to include it)
# vendor/

# Go workspace file
go.work

# Env
.env

# Misc
.DS_Store
repos.txt
15 changes: 13 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,20 @@ module github.com/arunsathiya/set-output-janitor

go 1.21.5

require github.com/google/go-github/v58 v58.0.0

require (
github.com/golang/protobuf v1.5.3 // indirect
github.com/google/go-querystring v1.1.0 // indirect
github.com/shurcooL/graphql v0.0.0-20230722043721-ed46e5a46466 // indirect
golang.org/x/net v0.20.0 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/protobuf v1.31.0 // indirect
)

require (
github.com/bluekeyes/go-gitdiff v0.7.1
github.com/bluekeyes/patch2pr v0.21.0
github.com/google/go-github/v58 v58.0.0
github.com/joho/godotenv v1.5.1
github.com/shurcooL/githubv4 v0.0.0-20231126234147-1cffa1f02456
golang.org/x/oauth2 v0.16.0
)
Loading

0 comments on commit 77826e9

Please sign in to comment.