Skip to content
This repository has been archived by the owner on Jun 28, 2024. It is now read-only.

Checkcommits ignore release prs #37

Merged
Merged
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
1 change: 1 addition & 0 deletions .ci/static-checks.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ self="$GOPATH/src/github.com/kata-containers/tests"
checkcommits \
--need-fixes \
--need-sign-offs \
--ignore-fixes-for-subsystem "release" \
--verbose

go_packages=$(go list ./... 2>/dev/null || true)
Expand Down
33 changes: 33 additions & 0 deletions cmd/checkcommits/Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

29 changes: 29 additions & 0 deletions cmd/checkcommits/Gopkg.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Gopkg.toml example
#
# Refer to https://github.com/golang/dep/blob/master/docs/Gopkg.toml.md
# for detailed Gopkg.toml documentation.
#
# required = ["github.com/user/thing/cmd/thing"]
# ignored = ["github.com/user/project/pkgX", "bitbucket.org/user/project/pkgA/pkgY"]
#
# [[constraint]]
# name = "github.com/user/project"
# version = "1.0.0"
#
# [[constraint]]
# name = "github.com/user/project2"
# branch = "dev"
# source = "github.com/myfork/project2"
#
# [[override]]
# name = "github.com/x/y"
# version = "2.4.0"


[[constraint]]
name = "github.com/stretchr/testify"
version = "1.2.0"

[[constraint]]
name = "github.com/urfave/cli"
version = "1.20.0"
Loading