Skip to content

Commit 5a28891

Browse files
authored
Merge pull request ethereumjs#630 from ryanio/labeler
Add PR labeler for packages
2 parents 0fc97b4 + a616650 commit 5a28891

File tree

2 files changed

+34
-0
lines changed

2 files changed

+34
-0
lines changed

.github/labeler.yml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
'package: account':
2+
- package/account/*
3+
- package/account/**/*
4+
5+
'package: block':
6+
- package/block/*
7+
- package/block/**/*
8+
9+
'package: blockchain':
10+
- package/blockchain/*
11+
- package/blockchain/**/*
12+
13+
'package: common':
14+
- package/common/*
15+
- package/common/**/*
16+
17+
'package: tx':
18+
- package/tx/*
19+
- package/tx/**/*
20+
21+
'package: vm':
22+
- package/vm/*
23+
- package/vm/**/*

.github/workflows/labeler.yml

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: 'Pull Request Labeler'
2+
on:
3+
- pull_request
4+
5+
jobs:
6+
label:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/labeler@v2
10+
with:
11+
repo-token: '${{ secrets.GITHUB_TOKEN }}'

0 commit comments

Comments
 (0)