Skip to content

Commit b7a46b5

Browse files
committed
Adds fine-grained control to GitHub action labeler (#3436)
Previous merge led to matches for documentation that are unintentional. This MR fixes the workflow. - Bug fix (non-breaking change which fixes an issue) - [x] I have read and understood the [contribution guidelines](https://isaac-sim.github.io/IsaacLab/main/source/refs/contributing.html) - [x] I have run the [`pre-commit` checks](https://pre-commit.com/) with `./isaaclab.sh --format` - [x] I have made corresponding changes to the documentation - [x] My changes generate no new warnings - [ ] I have added tests that prove my fix is effective or that my feature works - [ ] I have updated the changelog and the corresponding version in the extension's `config/extension.toml` file - [x] I have added my name to the `CONTRIBUTORS.md` or my name already exists there --------- Signed-off-by: Mayank Mittal <[email protected]>
1 parent e3f43d9 commit b7a46b5

File tree

1 file changed

+17
-15
lines changed

1 file changed

+17
-15
lines changed

.github/labeler.yml

Lines changed: 17 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55

66
# Documentation-related changes
77
documentation:
8-
- changed-files:
9-
- any-glob-to-any-file:
10-
- 'docs/**'
11-
- '**/README.md'
12-
- all-globs-to-all-files:
13-
- '!**/CHANGELOG.rst'
14-
- '!docs/licenses/**'
8+
- all:
9+
- changed-files:
10+
- any-glob-to-any-file:
11+
- 'docs/**'
12+
- '**/README.md'
13+
- all-globs-to-all-files:
14+
- '!docs/licenses/**'
1515

1616
# Infrastructure changes
1717
infrastructure:
@@ -55,14 +55,16 @@ isaac-mimic:
5555

5656
# Isaac Lab team related changes.
5757
isaac-lab:
58-
- changed-files:
59-
- any-glob-to-any-file:
60-
- source/**
61-
- scripts/**
62-
- all-globs-to-all-files:
63-
- '!source/isaaclab_assets/**'
64-
- '!source/isaaclab_mimic/**'
65-
- '!scripts/imitation_learning/**'
58+
- all:
59+
- changed-files:
60+
- any-glob-to-any-file:
61+
- source/**
62+
- scripts/**
63+
- all-globs-to-all-files:
64+
- '!source/isaaclab_assets/**'
65+
- '!source/isaaclab_mimic/**'
66+
- '!source/isaaclab/isaaclab/devices'
67+
- '!scripts/imitation_learning/**'
6668

6769
# Add 'enhancement' label to any PR where the head branch name
6870
# starts with `feature` or has a `feature` section in the name

0 commit comments

Comments
 (0)