Skip to content

Commit 5046de7

Browse files
authored
Add pr labeler (#83)
* ci: add labeler workflow * ci: add labeler config
1 parent 799f686 commit 5046de7

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

.github/labeler.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
"scope: core":
2+
- src/core/*
3+
4+
"scope: cli":
5+
- src/cli/*
6+
7+
"scope: auth":
8+
- src/auth/*
9+
10+
"scope: proxy":
11+
- src/proxy/*

.github/workflows/labeler.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: "Pull Request Labeler"
2+
on:
3+
- pull_request_target
4+
5+
jobs:
6+
triage:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/labeler@main
10+
with:
11+
repo-token: "${{ secrets.GITHUB_TOKEN }}"

0 commit comments

Comments
 (0)