Skip to content

Commit

Permalink
fix: labeler.yml with new syntax (#961)
Browse files Browse the repository at this point in the history
* fix: labeler.yml with new syntax

* Update labeler.yml
  • Loading branch information
teolemon authored May 25, 2024
1 parent 70aa15c commit 66f34bc
Showing 1 changed file with 24 additions and 16 deletions.
40 changes: 24 additions & 16 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
@@ -1,24 +1,32 @@
github_actions:
- .github/**/*
# Add labels to any any pull request with changes to the specified paths
Github Actions:
- changed-files:
- any-glob-to-any-file: '.github/**/*'

questions game:
- src/pages/questions/**/*
Questions game:
- changed-files:
- any-glob-to-any-file: 'src/pages/questions/**/*'

logo game:
- src/pages/logos/**/*,
- src/components/LogoForm.jsx,
- src/pages/logos/LogoAnnotation.jsx
- src/pages/logos/LogoDeepSearch.jsx
Logo game:
- changed-files:
- any-glob-to-any-file: 'src/pages/logos/**/*'
- any-glob-to-any-file: 'src/components/LogoForm.jsx'
- any-glob-to-any-file: 'src/pages/logos/LogoAnnotation.jsx'
- any-glob-to-any-file: 'src/pages/logos/LogoDeepSearch.jsx'

insights:
- src/pages/insights/**/*
Insights:
- changed-files:
- any-glob-to-any-file: 'src/pages/insights/**/*'

eco-score game:
- src/pages/eco-score/**/*
Eco-Score game:
- changed-files:
- any-glob-to-any-file: 'src/pages/eco-score/**/*'

i18n:
- src/i18n/**/*
- changed-files:
- any-glob-to-any-file: 'src/i18n/**/*'

Nutrition game:
- src/pages/nutrition/**/*
- src/pages/nutrition/index.jsx
- changed-files:
- any-glob-to-any-file: 'src/pages/nutrition/**/*'
- any-glob-to-any-file: 'src/pages/nutrition/index.jsx'

0 comments on commit 66f34bc

Please sign in to comment.