Skip to content

Commit 73cd550

Browse files
committed
ci: add PR labeler workflow
This introduces an automatic pull request labeler using GitHub Actions to streamline workflow management.
1 parent efb8189 commit 73cd550

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

.github/labeler.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Workflow:
2+
- changed-files:
3+
- any-glob-to-any-file:
4+
- .github/workflows/**

.github/workflows/pr-labeler.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
name: 'Pull Request Labeler'
2+
on:
3+
pull_request:
4+
5+
jobs:
6+
labeler:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/labeler@v6

0 commit comments

Comments
 (0)