Skip to content

Commit

Permalink
Add auto-label actions
Browse files Browse the repository at this point in the history
  • Loading branch information
flip1995 committed Nov 25, 2019
1 parent cc35165 commit 46dc2c8
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/conf-labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
S-waiting-on-review:
- ./**/*

L-lint:
- ./CHANGELOG.md
20 changes: 20 additions & 0 deletions .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# This workflow will triage pull requests and apply a label based on the
# paths that are modified in the pull request.
#
# To use this workflow, you will need to set up a .github/labeler.yml
# file with configuration. For more information, see:
# https://github.com/actions/labeler/blob/master/README.md

name: Labeler
on: [pull_request]

jobs:
label:

runs-on: ubuntu-latest

steps:
- uses: actions/labeler@v2
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
configuration-path: ".github/workflows/conf-labeler.yml"

0 comments on commit 46dc2c8

Please sign in to comment.