Skip to content

Commit

Permalink
refactor(ci): revise label names and pattern
Browse files Browse the repository at this point in the history
Signed-off-by: Sandro-Alessio Gierens <[email protected]>
  • Loading branch information
gierens committed Sep 6, 2024
1 parent 68c9e53 commit ba629cd
Showing 1 changed file with 17 additions and 15 deletions.
32 changes: 17 additions & 15 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
@@ -1,37 +1,39 @@
api:
- changed-files:
- any-glob-to-any-file: api/*
- any-glob-to-any-file: "api/*"

lib:
- changed-files:
- any-glob-to-any-file: lib/*
- any-glob-to-any-file: "lib/*"

cli:
- changed-files:
- any-glob-to-any-file: cli/*
- any-glob-to-any-file: "cli/*"

deps:
dep:
- changed-files:
- any-glob-to-any-file:
- Cargo.*
- **/Cargo.*
- "Cargo.*"
- "**/Cargo.*"

rust:
src:
- changed-files:
- any-glob-to-any-file: **/*.rs
- any-glob-to-any-file: "**/src/**/*"

tests:
test:
- changed-files:
- any-glob-to-any-file: **/tests/**/*
- any-glob-to-any-file:
- "tests/**/*"
- "**/tests/**/*"

sql:
db:
- changed-files:
- any-glob-to-any-file: api/migrations/*
- any-glob-to-any-file: "api/migrations/*"

scripts:
sh:
- changed-files:
- any-glob-to-any-file: scripts/*
- any-glob-to-any-file: "scripts/*"

ci:
- changed-files:
- any-glob-to-any-file: .github/**/*
- any-glob-to-any-file: ".github/**/*"

0 comments on commit ba629cd

Please sign in to comment.