Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 386 Bytes

README.md

File metadata and controls

19 lines (15 loc) · 386 Bytes

Pull Request Labeler

This is a fork of https://github.com/actions/labeler

It introduces anyor that can be used to make sure ALL files match ANY glob from the list.

In the example below, we add the ci:skip-tests label only if all files match one of the glob:

'ci:skip-tests':
- anyor:
  - 'README.md'
  - 'docs/*'
  - 'docs/**/*'
  - 'templates/**/*'
  - 'templates/*'