Skip to content

Commit

Permalink
Merge pull request #49 from GenieWizards/feat/automate-labelling
Browse files Browse the repository at this point in the history
Create label.yml🔖
  • Loading branch information
shivamvijaywargi authored Nov 24, 2024
2 parents 67bfd82 + 7e27428 commit 96adae5
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
documentation:
- "**/*.md"

workflows:
- ".github/workflows/**/*"
22 changes: 22 additions & 0 deletions .github/workflows/label.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# 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

name: Labeler
on: [pull_request_target]

jobs:
label:

runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write

steps:
- uses: actions/labeler@v4
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"

0 comments on commit 96adae5

Please sign in to comment.