Skip to content

Commit

Permalink
actions: Have auto-labeler check subdirectories
Browse files Browse the repository at this point in the history
This fixes a lot of labels not getting applied properly.
  • Loading branch information
ColorfulRhino committed Jun 19, 2024
1 parent 568536a commit 5a19cb4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,27 +14,27 @@
- all:
- changed-files:
- any-glob-to-any-file: ['patch/**/*','config/**/*']
- any-glob-to-all-files: ['!config/cli/*','!config/desktop/*','!config/distributions/*']
- any-glob-to-all-files: ['!config/cli/**/*','!config/desktop/**/*','!config/distributions/**/*']

"Framework":
- all:
- changed-files:
- any-glob-to-any-file: ['lib/*','tools/*','config/cli/*','packages/*','extensions/*']
- any-glob-to-any-file: ['lib/**/*','tools/**/*','config/cli/**/*','packages/**/*','extensions/**/*']

"Actions scripts":
- all:
- changed-files:
- any-glob-to-any-file: ['.github/workflows/*']
- any-glob-to-any-file: ['.github/workflows/**/*']

"Desktop":
- all:
- changed-files:
- any-glob-to-any-file: ['config/desktop/*']
- any-glob-to-any-file: ['config/desktop/**/*']

"Patches":
- all:
- changed-files:
- any-glob-to-any-file: ['patch/*']
- any-glob-to-any-file: ['patch/**/*']

# Add 'Documentation' label to any change to .md files within the entire repository
"Documentation":
Expand Down

0 comments on commit 5a19cb4

Please sign in to comment.