-
Notifications
You must be signed in to change notification settings - Fork 783
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
clean up, setting maintaining team to Consul #1792
Conversation
roncodingenthusiast
commented
Aug 9, 2023
•
edited
Loading
edited
- setup golangci lint
- updates to slack and notification channels
- adding a make command for linting
7962ec5
to
24e8f2e
Compare
345188b
to
98c27f8
Compare
5b81a52
to
31d5eaf
Compare
- clean up dependencies - adding golangci lint - updating maintaining teams - allow release/** to build newer versions of consul-template going forward
31d5eaf
to
ec80694
Compare
release_branches = ["main"] | ||
release_branches = [ | ||
"main", | ||
"release/**", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What is the effect of adding the release/**
here?
@@ -72,3 +72,9 @@ toc: | |||
dev-tree: | |||
@true | |||
.PHONY: dev-tree | |||
|
|||
# lint | |||
lint: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
❤️
@@ -68,7 +68,3 @@ require ( | |||
golang.org/x/time v0.3.0 // indirect | |||
gopkg.in/yaml.v3 v3.0.1 // indirect | |||
) | |||
|
|||
replace github.com/golang/lint => golang.org/x/lint v0.0.0-20190409202823-959b441ac422 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we know why we had these replace directives before?