Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create update-dot-github #36

Draft
wants to merge 8 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ BINARIES = bin/check-for-outdated-dependencies \
bin/mark-and-sweep-stale-issues \
bin/nudge-maintainers-to-release \
bin/unearth \
bin/unify-labels
bin/unify-labels \
bin/update-dot-github

.PHONY: all
all: deps fmt build test
Expand Down Expand Up @@ -47,6 +48,10 @@ unearth: build
mark-and-sweep: build
source .env && ./bin/mark-and-sweep-stale-issues

.PHONY: update-dot-github
update-dot-github: build
source .env && ./bin/update-dot-github

.PHONY: clean
clean:
rm -rf bin
2 changes: 1 addition & 1 deletion affinity/affinity.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"fmt"
"strings"

"github.com/google/go-github/v46/github"
"github.com/google/go-github/v50/github"
"github.com/jekyll/jekyllbot/ctx"
)

Expand Down
2 changes: 1 addition & 1 deletion affinity/handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package affinity
import (
"fmt"

"github.com/google/go-github/v46/github"
"github.com/google/go-github/v50/github"
"github.com/jekyll/jekyllbot/ctx"
)

Expand Down
2 changes: 1 addition & 1 deletion affinity/team.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"math/rand"
"time"

"github.com/google/go-github/v46/github"
"github.com/google/go-github/v50/github"
"github.com/jekyll/jekyllbot/ctx"
)

Expand Down
2 changes: 1 addition & 1 deletion affinity/team_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package affinity
import (
"testing"

"github.com/google/go-github/v46/github"
"github.com/google/go-github/v50/github"
"github.com/stretchr/testify/assert"
)

Expand Down
2 changes: 1 addition & 1 deletion auth/auth.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"fmt"
"log"

"github.com/google/go-github/v46/github"
"github.com/google/go-github/v50/github"
"github.com/jekyll/jekyllbot/ctx"
)

Expand Down
2 changes: 1 addition & 1 deletion autopull/autopull.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"log"
"strings"

"github.com/google/go-github/v46/github"
"github.com/google/go-github/v50/github"
"github.com/jekyll/jekyllbot/ctx"
)

Expand Down
2 changes: 1 addition & 1 deletion chlog/close_milestone_on_release.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package chlog

import (
"github.com/google/go-github/v46/github"
"github.com/google/go-github/v50/github"
"github.com/jekyll/jekyllbot/ctx"
)

Expand Down
2 changes: 1 addition & 1 deletion chlog/create_release_on_tag.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"regexp"
"strings"

"github.com/google/go-github/v46/github"
"github.com/google/go-github/v50/github"
"github.com/jekyll/jekyllbot/ctx"
)

Expand Down
2 changes: 1 addition & 1 deletion chlog/merge_and_label.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"sync"
"text/template"

"github.com/google/go-github/v46/github"
"github.com/google/go-github/v50/github"
"github.com/jekyll/jekyllbot/auth"
"github.com/jekyll/jekyllbot/ctx"
"github.com/parkr/changelog"
Expand Down
2 changes: 1 addition & 1 deletion chlog/merge_and_label_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"io/ioutil"
"testing"

"github.com/google/go-github/v46/github"
"github.com/google/go-github/v50/github"
"github.com/jekyll/jekyllbot/ctx"
"github.com/stretchr/testify/assert"
)
Expand Down
2 changes: 1 addition & 1 deletion cmd/freeze-ancient-issues/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (

"golang.org/x/sync/errgroup"

"github.com/google/go-github/v46/github"
"github.com/google/go-github/v50/github"
"github.com/jekyll/jekyllbot/ctx"
"github.com/jekyll/jekyllbot/freeze"
"github.com/jekyll/jekyllbot/jekyll"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"strings"
"time"

"github.com/google/go-github/v46/github"
"github.com/google/go-github/v50/github"
"github.com/jekyll/jekyllbot/ctx"
"github.com/jekyll/jekyllbot/sentry"
"github.com/jekyll/jekyllbot/stale"
Expand Down
2 changes: 1 addition & 1 deletion cmd/nudge-maintainers-to-release/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"strings"
"time"

"github.com/google/go-github/v46/github"
"github.com/google/go-github/v50/github"
"github.com/jekyll/jekyllbot/ctx"
"github.com/jekyll/jekyllbot/jekyll"
"github.com/jekyll/jekyllbot/releases"
Expand Down
2 changes: 1 addition & 1 deletion cmd/unearth/unearth.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"log"
"strings"

"github.com/google/go-github/v46/github"
"github.com/google/go-github/v50/github"
"github.com/jekyll/jekyllbot/ctx"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/unify-labels/unify_labels.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"log"
"strings"

"github.com/google/go-github/v46/github"
"github.com/google/go-github/v50/github"
"github.com/jekyll/jekyllbot/ctx"
"github.com/jekyll/jekyllbot/freeze"
"github.com/jekyll/jekyllbot/sentry"
Expand Down
Loading