From 025979632212c6081c1a91e68eb90027f0ab659d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 Nov 2024 17:57:07 +0000 Subject: [PATCH 1/2] Bump actions/labeler from 4 to 5 in the security group Bumps the security group with 1 update: [actions/labeler](https://github.com/actions/labeler). Updates `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 dependency-group: security ... Signed-off-by: dependabot[bot] --- .github/workflows/pr-check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr-check.yml b/.github/workflows/pr-check.yml index 0c052c9..cb8e40f 100644 --- a/.github/workflows/pr-check.yml +++ b/.github/workflows/pr-check.yml @@ -10,7 +10,7 @@ jobs: pull-requests: write runs-on: ubuntu-latest steps: - - uses: actions/labeler@v4 + - uses: actions/labeler@v5 Container-Build: runs-on: ubuntu-latest From 433a34928246cc54e17e5b3d1f87a7a3a5cfd8c8 Mon Sep 17 00:00:00 2001 From: Luiz Felipe F M Costa Date: Mon, 4 Nov 2024 15:03:39 -0300 Subject: [PATCH 2/2] fix labeler.yml --- .github/labeler.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index 2a379ed..175016c 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -1,8 +1,10 @@ # Add the "container" label to pull request that changes the `./container` directory container: - - 'container/**/*' + - changed-files: + - any-glob-to-any-file: 'container/**/*' # Add the "source" label to pull request that changes anything but the `./container` directory source: - - any: ['**'] - all: ['!container/**/*'] + - all: + - any-glob-to-any-file: '**/*' + - all-globs-to-all-files: '!container/**/*'