File tree Expand file tree Collapse file tree 4 files changed +42
-1
lines changed Expand file tree Collapse file tree 4 files changed +42
-1
lines changed Original file line number Diff line number Diff line change
1
+ name-template : ' Version $NEXT_PATCH_VERSION'
2
+ tag-template : ' v$NEXT_PATCH_VERSION'
3
+ categories :
4
+ - title : ' Features'
5
+ labels :
6
+ - ' feature'
7
+ - ' enhancement'
8
+ - title : ' Bug Fixes'
9
+ labels :
10
+ - ' fix'
11
+ - ' bugfix'
12
+ - ' bug'
13
+ - title : ' Maintenance'
14
+ label : ' chore'
15
+ change-template : ' - $TITLE (#$NUMBER)'
16
+ exclude-labels :
17
+ - ' skip-changelog'
18
+ template : |
19
+ ## Changes
20
+
21
+ $CHANGES
Original file line number Diff line number Diff line change
1
+ name : Release Drafter
2
+
3
+ on :
4
+ push :
5
+ # branches to consider in the event; optional, defaults to all
6
+ branches :
7
+ - master
8
+
9
+ jobs :
10
+ update_release_draft :
11
+ runs-on : ubuntu-latest
12
+ steps :
13
+ # Drafts your next Release notes as Pull Requests are merged into "master"
14
+ - uses : release-drafter/release-drafter@v5
15
+ with :
16
+ # (Optional) specify config name to use, relative to .github/. Default: release-drafter.yml
17
+ config-name : release-drafter-config.yml
18
+ env :
19
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 7
7
! .circleci /config.yml
8
8
! /tests /* .bz2
9
9
! Makefile
10
+ ! ** /* .yml
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ godoc_examples: get fmt
48
48
$(GOTEST ) -race -covermode=atomic ./redisearch
49
49
50
50
test : get fmt
51
- $(GOTEST ) -race -covermode=atomic - run " Test" ./redisearch
51
+ $(GOTEST ) -run " Test" ./redisearch
52
52
53
53
coverage : get
54
54
$(GOTEST ) -race -coverprofile=coverage.txt -covermode=atomic ./redisearch
You can’t perform that action at this time.
0 commit comments