Skip to content

Commit

Permalink
update labeler syntax to use v5 (#351)
Browse files Browse the repository at this point in the history
## About The Pull Request

Обновляем синтаксис используемый в лейблере до версии 5.
Лейблер может быть будет работать :)
  • Loading branch information
Gaxeer committed Jul 12, 2024
1 parent a8161ac commit 4070e8f
Showing 1 changed file with 24 additions and 14 deletions.
38 changes: 24 additions & 14 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
@@ -1,36 +1,46 @@
'TGUI':
- 'tgui/**'
- changed-files:
- any-glob-to-any-file: 'tgui/**'

'Звук':
- '**/*.ogg'
- changed-files:
- any-glob-to-any-file: '**/*.ogg'

'Спрайты':
- '**/*.dmi'
- '**/*.png'
- changed-files:
- any-glob-to-any-file: ['**/*.dmi', '**/*.png']

'Изменение Карты':
- '**/*.dmm'
- changed-files:
- any-glob-to-any-file: '**/*.dmm'

'НЕ МОДУЛЬНО':
- all: ['code/**']
- base-branch: 'master'
- all:
- changed-files:
- any-glob-to-any-file: 'code/**'
- base-branch: 'master'

'Частичная модульность':
- all: ['code/**', modular_bandastation/**]
- base-branch: 'master'
- all:
- chandged-files:
- all-globs-to-any-file: ['code/**', modular_bandastation/**]
- base-branch: 'master'

'Перевод':
- base-branch: 'translate'

'Инструменты':
- '.gihub/workflows/**'
- 'tools/**'
- changed-files:
- any-glob-to-any-file: ['.gihub/workflows/**', 'tools/**']

'Изменение конфига':
- 'config/**'
- changed-files:
- any-glob-to-any-file: 'config/**'

'Документация':
- '**/*.md'
- changed-files:
- any-glob-to-any-file: '**/*.md'

'SQL':
- 'SQL/**'
- changed-files:
- any-glob-to-any-file: 'SQL/**'

0 comments on commit 4070e8f

Please sign in to comment.