Skip to content

Commit 6eb8f7d

Browse files
committed
ci: add pr-labeler
1 parent a38b1bb commit 6eb8f7d

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed

.github/pr-labeler.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
--
2+
feat: feat/*
3+
fix: fix/*
4+
docs: docs/*
5+
style: style/*
6+
refactor: refactor/*
7+
perf: perf/*
8+
test: test/*
9+
build: build/*
10+
ci: ci/*
11+
chore: chore/*
12+
revert: revert/*

.github/workflows/pr-labeler.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
name: Pull Request Labeler
3+
on:
4+
pull_request:
5+
jobs:
6+
pr-labeler:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: TimonVS/pr-labeler-action@v3
10+
env:
11+
GITHUB_TOKEN: ${{ github.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)