Skip to content

Commit bc4ffc1

Browse files
abhishalyasglyon
authored andcommitted
Add pull request labeler (JuliaPlots#301)
This adds a pull request labeler using [Github Actions](https://github.com/actions/labeler).
1 parent c78e5b4 commit bc4ffc1

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

.github/labeler.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
documentation:
2+
- "docs/**/*"
3+
CI:
4+
- "**/*.yml"
5+
testing:
6+
- test/*

.github/workflows/label.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: "Labeler"
2+
on:
3+
- pull_request
4+
5+
jobs:
6+
triage:
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)