Skip to content

Commit 79cdab0

Browse files
author
Massimiliano Pippi
authored
[skip changelog] better match for skip clauses (#449)
1 parent 1c49c08 commit 79cdab0

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

Diff for: .goreleaser.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ release:
1111
changelog:
1212
filters:
1313
exclude:
14-
- '^\[skip changelog\].*'
15-
- '^\[changelog skip\].*'
16-
- '^\[skip ci\].*'
17-
- '^\[ci skip\].*'
14+
# [skip changelog], [skip-changelog], [changelog skip], [changelog-skip]
15+
- '^(?i)\[(skip|changelog)[ ,-](skip|changelog)\].*'
16+
# [skip ci], [skip-ci], [ci skip], [ci-skip]
17+
- '^(?i)\[(skip|ci)[ ,-](skip|ci)\].*'
1818

1919
# We have multiple builds in order to fine tune
2020
# cross compilations.

Diff for: go.mod

+1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ require (
4343
go.bug.st/serial.v1 v0.0.0-20180827123349-5f7892a7bb45
4444
golang.org/x/net v0.0.0-20190311183353-d8887717615a
4545
golang.org/x/text v0.3.0
46+
google.golang.org/appengine v1.4.0 // indirect
4647
google.golang.org/genproto v0.0.0-20190327125643-d831d65fe17d // indirect
4748
google.golang.org/grpc v1.21.1
4849
gopkg.in/mgo.v2 v2.0.0-20180705113604-9856a29383ce // indirect

0 commit comments

Comments
 (0)