forked from ChihebTrabelsi/deep_complex_networks
-
-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🔄 created local '.github/labeler.yml' from remote 'configs/labeler.yml'
- Loading branch information
1 parent
0dd1ac2
commit b6930d6
Showing
1 changed file
with
63 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
Tests: | ||
- changed-files: | ||
- any-glob-to-any-file: [ "tests/**/*" ] | ||
|
||
Dependencies: | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- "requirements.txt" | ||
- "setup.py" | ||
- "pyproject.toml" | ||
- "poetry.lock" | ||
- "pixi.toml" | ||
- "pixi.lock" | ||
- "Pipfile" | ||
- "Pipfile.lock" | ||
- "requirements/*.txt" | ||
- "requirements/*.in" | ||
|
||
Build: | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- "Dockerfile*" | ||
- "docker-compose*.yml" | ||
- "Makefile" | ||
|
||
Documentation: | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- "docs/**/*" | ||
- "*.md" | ||
- "*.rst" | ||
|
||
Config: | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- ".pre-commit-config.yaml" | ||
- "config/**/*" | ||
- "settings/**/*" | ||
- "*.ini" | ||
- "*.cfg" | ||
- "*.conf" | ||
|
||
CI/CD: | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- ".github/**/*" | ||
- "tox.ini" | ||
- ".coveragerc" | ||
|
||
# Add 'feature' label to any PR where the head branch name starts with `feature` or has a `feature` section in the name | ||
feature: | ||
- head-branch: | ||
- '^feature' | ||
- 'feature' | ||
|
||
# Add 'bugfix' label to branches with bug/fix/hotfix prefixes | ||
bugfix: | ||
- head-branch: [ '^bug', '^fix', '^hotfix' ] | ||
|
||
# Add 'breaking' label for major version bumps or breaking change commits | ||
breaking: | ||
- title: [ '^BREAKING CHANGE', 'BREAKING-CHANGE' ] | ||
- body: [ 'BREAKING CHANGE:', 'BREAKING-CHANGE:' ] |