0
0
mirror of https://github.com/TrianguloY/UrlChecker.git synced 2024-09-19 20:02:16 +02:00
UrlChecker/.github/labeler.yml
Ilithy 6d9761dbe2
Basic PR labeler (#113)
here is a "basic" labeler

It labels the PRs of:

- modifications of language files (strings.xml): adds the label "Ongoing translation"

- internal files ("Core" label)
when editing files in the `app/src/main/java/com/trianguloy/urlchecker`
folder and all its subfolders

- Adds the "Github" label when modifying files in the `.github` folder
and subfolders

- Adds the label "Assets" when modifying files in the
`app/src/main/assets` folder and its subfolders

- Adds the label "Store file" when modifying files in the
`app/src/main/play` folder and its subfolders

- Adds the label "Gradle wrapper" when modifying files in the `gradle`
folder and its subfolders

Co-authored-by: TrianguloY <correo--correo@hotmail.com>
2022-10-01 23:00:24 +02:00

31 lines
852 B
YAML

# Made with love
# see https://github.com/actions/labeler
# for more informations
# Add 'assets' label to any assets file changes within the source dir
Assets:
- app/src/main/assets/**/*
# Add 'Github' label to any git file changes within the source dir
Github:
- .github/**/*
# Add 'Core' label to any change within the 'core' package
Core:
- app/src/main/java/**/*
- app/src/main/kotlin/**/*
# Add 'Store file' label to any change within the 'play' folder and subfolder(s)
Store file:
- app/src/main/play/**/*
# Add 'Gradle wrapper' label to any change within the 'gradle' folder and subfolder
Gradle wrapper:
- gradle/wrapper/**/*
# Add 'Translation` label to any change to strings.xml files as long as the English strings.xml file hasn't changed
Translation:
- any: ['app/src/**/strings.xml']
all: ['!app/src/main/res/values/strings.xml']