Skip to content
This repository has been archived by the owner on Oct 11, 2024. It is now read-only.

Commit

Permalink
ci: Updates labeler config
Browse files Browse the repository at this point in the history
  • Loading branch information
frgfm committed Jan 28, 2024
1 parent f00ab69 commit 7ab0db9
Showing 1 changed file with 61 additions and 30 deletions.
91 changes: 61 additions & 30 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
@@ -1,71 +1,102 @@
'ext: tests':
- src/tests/*
- changed-files:
- any-glob-to-any-file: src/tests/*

'ext: scripts':
- scripts/*
- changed-files:
- any-glob-to-any-file: scripts/*

'ext: apm':
- apm/*
- changed-files:
- any-glob-to-any-file: apm/*

'module: database':
- src/app/db.py
- changed-files:
- any-glob-to-any-file: src/app/db.py

'module: services':
- src/app/services/*
- changed-files:
- any-glob-to-any-file: src/app/services/*

'module: core':
- src/app/main.py
- src/app/core/*
- changed-files:
- any-glob-to-any-file:
- src/app/main.py
- src/app/core/*

'module: models':
- src/app/models.py
- changed-files:
- any-glob-to-any-file: src/app/models.py

'module: schemas':
- src/app/schemas/*
- changed-files:
- any-glob-to-any-file: src/app/schemas/*

'module: crud':
- src/app/crud/*
- changed-files:
- any-glob-to-any-file: src/app/crud/*

'endpoint: login':
- src/app/api/*/endpoints/login.py
- changed-files:
- any-glob-to-any-file: src/app/api/*/endpoints/login.py

'endpoint: users':
- src/app/api/*/endpoints/users.py
- changed-files:
- any-glob-to-any-file: src/app/api/*/endpoints/users.py

'endpoint: repos':
- src/app/api/*/endpoints/repos.py
- changed-files:
- any-glob-to-any-file: src/app/api/*/endpoints/repos.py

'endpoint: guidelines':
- src/app/api/*/endpoints/guidelines.py
- changed-files:
- any-glob-to-any-file: src/app/api/*/endpoints/guidelines.py

'endpoint: compute':
- src/app/api/*/endpoints/compute.py
- changed-files:
- any-glob-to-any-file: src/app/api/*/endpoints/compute.py

'endpoint: code':
- changed-files:
- any-glob-to-any-file: src/app/api/*/endpoints/code.py

'topic: build':
- pyproject.toml
- poetry.lock
- changed-files:
- any-glob-to-any-file:
- pyproject.toml
- poetry.lock

'topic: migration':
- src/alembic.ini
- src/alembic/*
- changed-files:
- any-glob-to-any-file:
- src/alembic.ini
- src/alembic/*

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

'topic: docker':
- docker-compose.yml
- docker-compose.test.yml
- Dockerfile
- traefik/*
- changed-files:
- any-glob-to-any-file:
- docker-compose.yml
- docker-compose.test.yml
- Dockerfile
- traefik/*

'topic: documentation':
- README.md
- CONTRIBUTING.md
- CODE_OF_CONDUCT.md
- changed-files:
- any-glob-to-any-file:
- README.md
- CONTRIBUTING.md
- CODE_OF_CONDUCT.md

'topic: security':
- src/app/api/dependencies.py
- src/app/security.py
- changed-files:
- any-glob-to-any-file:
- src/app/api/dependencies.py
- src/app/security.py

'type: code quality':
- .pre-commit-config.yaml
- changed-files:
- any-glob-to-any-file: .pre-commit-config.yaml

0 comments on commit 7ab0db9

Please sign in to comment.