diff --git a/.github/labeler.yml b/.github/labeler.yml index f314a8638..56f5f9b18 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -1,18 +1,28 @@ ---- # labels auto assigned to PR, keep in sync with labels.yml test: - - test/**/*.spec.** + - changed-files: + - any-glob-to-any-file: + - test/**/*.spec.* dependencies: - - package.json - - yarn.lock - - package-lock.json -documentation: -**.md - -**/**/*.md - - website/**/* + - changed-files: + - any-glob-to-any-file: + - package.json + - yarn.lock + - package-lock.json +documentation: + - changed-files: + - any-glob-to-any-file: + - '**/**.md' + - website/ automation: - - .github/* - - .github/**/* + - changed-files: + - any-glob-to-any-file: + - .github/ core: - - src/core/**/* + - changed-files: + - any-glob-to-any-file: + - src/core/ cli: - - src/cli/**/* + - changed-files: + - any-glob-to-any-file: + - src/cli/ diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml index cda12b93a..2cf703d14 100644 --- a/.github/workflows/labeler.yml +++ b/.github/workflows/labeler.yml @@ -7,6 +7,6 @@ jobs: triage: runs-on: ubuntu-latest steps: - - uses: actions/labeler@v4 + - uses: actions/labeler@v5 with: repo-token: '${{ secrets.GITHUB_TOKEN }}'