0
0
mirror of https://github.com/TrianguloY/UrlChecker.git synced 2024-09-19 11:52:14 +02:00
UrlChecker/.github/labeler.yml
dependabot[bot] 996d1d91eb Bump actions/labeler from 4 to 5
Bumps [actions/labeler](https://github.com/actions/labeler) from 4 to 5.
- [Release notes](https://github.com/actions/labeler/releases)
- [Commits](https://github.com/actions/labeler/compare/v4...v5)

---
updated-dependencies:
- dependency-name: actions/labeler
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-12-06 17:46:28 +01:00

49 lines
1.6 KiB
YAML

# Made with love
#
# This is the configuration file for the labeler action
# for more example in setting this file or informations about
# the labeler action, see:
# https://github.com/actions/labeler
#
# If you want to use it in your project, you will simply need:
# 1 - commit this config file to your repository into the '.github' folder.
# 2 - commit the 'labeler.yml' action file into the '.github/workflows' folder.
#
# You will probably need to modify the labels, or their targets.
#
# Add 'Github' label to any file changes within the '.github' dir
Github:
- changed-files:
- any-glob-to-any-file: '.github/**'
# Add 'Automation' label to any file changes within the 'workflows' dir
Automation:
- changed-files:
- any-glob-to-any-file: '.github/workflows/**'
# Add 'Core' label to any file changes within the 'java' dir
Core:
- changed-files:
- any-glob-to-any-file: 'app/src/main/java/**'
# Add 'Store file' label to any change within the 'play' dir
Store file:
- changed-files:
- any-glob-to-any-file: 'app/src/main/play/**'
# Add 'assets' label to any change within the 'assets' or 'res' dirs
Assets:
- changed-files:
- any-glob-to-any-file: [ 'app/src/main/assets/**', 'app/src/main/res/**' ]
# Add 'Gradle wrapper' label to any change within the 'gradle' dir
Gradle wrapper:
- changed-files:
- any-glob-to-any-file: 'gradle/**'
# Add 'Translation` label to any change to strings.xml files other than english
Translation:
- changed-files:
- all-globs-to-any-file: [ 'app/src/**/strings.xml', '!app/src/main/res/values/strings.xml' ]