Skip to content

Commit

Permalink
Merge pull request #1786 from novuhq/feature/auto-labeler
Browse files Browse the repository at this point in the history
feat(): Add auto PR labeler
  • Loading branch information
scopsy committed Oct 19, 2022
2 parents 9762064 + 2ddecdc commit af5037e
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/labeler.yml
@@ -0,0 +1,18 @@
'@novu/api':
- apps/api/**/*
'@novu/web':
- apps/web/**/*
'@novu/ws':
- apps/ws/**/*
'documentation':
- docs/**/*
'@novu/webhook':
- apps/webhook/**/*
'@novu/dal':
- libs/dal/**/*
'@novu/shared':
- libs/shared/**/*
'@novu/notification-center':
- libs/shared/**/*
'providers':
- providers/**/*
14 changes: 14 additions & 0 deletions .github/workflows/pr-labeler.yml
@@ -0,0 +1,14 @@
name: "Pull Request Labeller"
on:
- pull_request_target

jobs:
triage:
permissions:
contents: read
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: actions/labeler@v4
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"

0 comments on commit af5037e

Please sign in to comment.