Skip to content

Commit 847f01a

Browse files
committed
Fix label workflow configuration
Signed-off-by: Austin Vazquez <[email protected]>
1 parent 1a00a81 commit 847f01a

File tree

1 file changed

+12
-11
lines changed

1 file changed

+12
-11
lines changed

.github/new-pull-request-labels.yml

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,23 @@
11
documentation:
2-
- '**/*.md'
2+
- changed-files:
3+
- all-globs-to-all-files: ['**/*.md']
34

45
github_actions:
5-
- .github/**
6-
- scripts/**
6+
- changed-files:
7+
- any-glob-to-any-file: ['.github/**', 'scripts/**']
78

89
go:
9-
- '**/*.go'
10+
- changed-files:
11+
- any-glob-to-any-file: ['**/*.go']
1012

1113
testing:
12-
- integration/**
13-
- '**/*_test.go'
14+
- changed-files:
15+
- any-glob-to-any-file: ['integration/**', '**/*_test.go']
1416

1517
benchmarking:
16-
- benchmark/**
18+
- changed-files:
19+
- any-glob-to-any-file: ['benchmark/**']
1720

1821
dependencies:
19-
- cmd/go.mod
20-
- cmd.go.sum
21-
- go.mod
22-
- go.sum
22+
- changed-files:
23+
- any-glob-to-any-file: ['**/go.mod', '**/go.sum']

0 commit comments

Comments
 (0)