Browse Source

Bump actions/labeler from 4 to 5 (#5198)

* 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] <support@github.com>

* Update labeler.yml

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: nihui <nihuini@tencent.com>
tags/20240102
dependabot[bot] GitHub 2 years ago
parent
commit
b11a9d1dac
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 45 additions and 17 deletions
  1. +44
    -16
      .github/labeler.yml
  2. +1
    -1
      .github/workflows/labeler.yml

+ 44
- 16
.github/labeler.yml View File

@@ -1,24 +1,52 @@
cmake:
- cmake/**
- toolchains/**
- changed-files:
- any-glob-to-any-file: ['cmake/**', 'toolchains/**']

doc: docs/**
doc:
- changed-files:
- any-glob-to-any-file: docs/**

python: python/**
python:
- changed-files:
- any-glob-to-any-file: python/**

example: examples/**
example:
- changed-files:
- any-glob-to-any-file: examples/**

test: tests/**
test:
- changed-files:
- any-glob-to-any-file: tests/**

tool: tools/**
pnnx: tools/pnnx/**
tool:
- changed-files:
- any-glob-to-any-file: tools/**
pnnx:
- changed-files:
- any-glob-to-any-file: tools/pnnx/**

core: src/*
layer: src/layer/*
core:
- changed-files:
- any-glob-to-any-file: src/*
layer:
- changed-files:
- any-glob-to-any-file: src/layer/*

arm: src/layer/arm/**
loongarch: src/layer/loongarch/**
mips: src/layer/mips/**
riscv: src/layer/riscv/**
vulkan: src/layer/vulkan/**
x86: src/layer/x86/**
arm:
- changed-files:
- any-glob-to-any-file: src/layer/arm/**
loongarch:
- changed-files:
- any-glob-to-any-file: src/layer/loongarch/**
mips:
- changed-files:
- any-glob-to-any-file: src/layer/mips/**
riscv:
- changed-files:
- any-glob-to-any-file: src/layer/riscv/**
vulkan:
- changed-files:
- any-glob-to-any-file: src/layer/vulkan/**
x86:
- changed-files:
- any-glob-to-any-file: src/layer/x86/**

+ 1
- 1
.github/workflows/labeler.yml View File

@@ -9,4 +9,4 @@ jobs:
label:
runs-on: ubuntu-latest
steps:
- uses: actions/labeler@v4
- uses: actions/labeler@v5

Loading…
Cancel
Save