From 7a5a2164d5970d1859e4900f0bc844f8cdc674d9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 28 Jan 2024 17:15:02 +0100 Subject: [PATCH] chore(deps): Bump actions/labeler from 4 to 5 (#298) * chore(deps): 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] * ci: Updates labeler format --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: F-G Fernandez <26927750+frgfm@users.noreply.github.com> --- .github/labeler.yml | 50 ++++++++++++++++++----------- .github/workflows/pull_requests.yml | 2 +- 2 files changed, 33 insertions(+), 19 deletions(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index 0d542879b..ae95e19b1 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -1,49 +1,63 @@ 'module: models': -- holocron/models/* +- changed-files: + - any-glob-to-any-file: holocron/models/* 'module: nn': -- holocron/nn/* +- changed-files: + - any-glob-to-any-file: holocron/nn/* 'module: ops': -- holocron/ops/* +- changed-files: + - any-glob-to-any-file: holocron/ops/* 'module: optim': -- holocron/optim/* +- changed-files: + - any-glob-to-any-file: holocron/optim/* 'module: trainer': -- holocron/trainer/* +- changed-files: + - any-glob-to-any-file: holocron/trainer/* 'module: transforms': -- holocron/transforms/* +- changed-files: + - any-glob-to-any-file: holocron/transforms/* 'module: utils': -- holocron/utils/* +- changed-files: + - any-glob-to-any-file: holocron/utils/* 'ext: api': -- api/* +- changed-files: + - any-glob-to-any-file: api/* 'ext: demo': -- demo/* +- changed-files: + - any-glob-to-any-file: demo/* 'ext: docs': -- docs/* +- changed-files: + - any-glob-to-any-file: docs/* 'ext: references': -- references/* +- changed-files: + - any-glob-to-any-file: references/* 'ext: scripts': -- scripts/* +- changed-files: + - any-glob-to-any-file: scripts/* 'ext: tests': -- tests/* +- changed-files: + - any-glob-to-any-file: tests/* 'topic: ci': -- .github/* +- changed-files: + - any-glob-to-any-file: .github/* 'topic: documentation': -- notebooks/* -- README.md -- CONTRIBUTING.md +- changed-files: + - any-glob-to-any-file: ['notebooks/*', 'README.md', 'CONTRIBUTING.md'] 'topic: build': -- setup.py +- changed-files: + - any-glob-to-any-file: setup.py diff --git a/.github/workflows/pull_requests.yml b/.github/workflows/pull_requests.yml index ca4b1cc56..ee3d3a567 100644 --- a/.github/workflows/pull_requests.yml +++ b/.github/workflows/pull_requests.yml @@ -36,6 +36,6 @@ jobs: pull-requests: write runs-on: ubuntu-latest steps: - - uses: actions/labeler@v4 + - uses: actions/labeler@v5 with: repo-token: "${{ secrets.GITHUB_TOKEN }}"