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.
  • Loading branch information
andrewhsu committed Jun 11, 2024
1 parent 9c7c7a3 commit d2e7e86
Showing 1 changed file with 14 additions and 10 deletions.
24 changes: 14 additions & 10 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
@@ -1,23 +1,27 @@
area/k8s:
- src/go/k8s/**/*
- changed-files:
- any-glob-to-any-file: ['src/go/k8s/**/*']

k8s/tests:
- 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/transform-sdk/**/*
- src/v/transform/**/*
- src/v/wasm/**/*
- changed-files:
- any-glob-to-any-file: ['src/transform-sdk/**/*', 'src/v/transform/**/*', 'src/v/wasm/**/*']

0 comments on commit d2e7e86

Please sign in to comment.