Skip to content

Commit

Permalink
Labeler: use comments to avoid aliases (#822)
Browse files Browse the repository at this point in the history
  • Loading branch information
adamjstewart authored Oct 6, 2022
1 parent 030d586 commit 240df5b
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
# TorchGeo modules
datamodules:
- torchgeo/datamodules/**
- "torchgeo/datamodules/**"
datasets:
- torchgeo/datasets/**
- "torchgeo/datasets/**"
losses:
- torchgeo/losses/**
- "torchgeo/losses/**"
models:
- torchgeo/models/**
- "torchgeo/models/**"
samplers:
- torchgeo/samplers/**
- "torchgeo/samplers/**"
trainers:
- torchgeo/trainers/**
- "torchgeo/trainers/**"
transforms:
- torchgeo/transforms/**
- "torchgeo/transforms/**"

# Other
documentation:
- docs/**
- "docs/**"
scripts:
- *.py
- "*.py"
testing:
- tests/**
- .github/workflows/**
- "tests/**"
- ".github/workflows/**"

0 comments on commit 240df5b

Please sign in to comment.