Skip to content

Commit

Permalink
gha/labeler: fix format of yml file for v5
Browse files Browse the repository at this point in the history
The v5 of labeler has breaking change that needs update to the
configuration file:
https://github.com/actions/labeler/tree/v5.0.0?tab=readme-ov-file#breaking-changes-in-v5

This fixes it and retains existing behavior. Just syntax differences.

(cherry picked from commit d2e7e86)

Conflicts:
	.github/labeler.yml

resolved conflict by only transforming what was already in v23.2.x
branch
  • Loading branch information
andrewhsu committed Jun 11, 2024
1 parent b0ed98c commit 9a9ca7c
Showing 1 changed file with 12 additions and 7 deletions.
19 changes: 12 additions & 7 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,23 @@
area/k8s:
- src/go/k8s/**/*
- changed-files:
- any-glob-to-any-file: ['src/go/k8s/**/*']

area/build:
- cmake/**/*
- .github/**/*
- changed-files:
- any-glob-to-any-file: ['cmake/**/*', '.github/**/*']

area/docs:
- docs/**/*
- changed-files:
- any-glob-to-any-file: ['docs/**/*']

area/rpk:
- src/go/rpk/**/*
- changed-files:
- any-glob-to-any-file: ['src/go/rpk/**/*']

area/redpanda:
- src/v/**/*
- changed-files:
- any-glob-to-any-file: ['src/v/**/*']

area/wasm:
- src/js/**/*
- changed-files:
- any-glob-to-any-file: ['src/js/**/*']

0 comments on commit 9a9ca7c

Please sign in to comment.