Skip to content

Commit

Permalink
Merge pull request FunkinCrew#2914 from FunkinCrew/docs/changed-lines…
Browse files Browse the repository at this point in the history
…-count-labeler

Add change counts labels to Actions labeler
  • Loading branch information
ninjamuffin99 committed Jun 27, 2024
2 parents 9bd09e3 + 4a73d7e commit 27bf88c
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 1 deletion.
12 changes: 12 additions & 0 deletions .github/changed-lines-count-labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Add 'small' to any changes below 10 lines
small:
max: 9

# Add 'medium' to any changes between 10 and 100 lines
medium:
min: 10
max: 99

# Add 'large' to any changes for more than 100 lines
large:
min: 100
15 changes: 14 additions & 1 deletion .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,19 @@ jobs:
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: actions/labeler@v5
- name: Set basic labels
uses: actions/labeler@v5
with:
sync-labels: true
changed-lines-count-labeler:
permissions:
contents: read
pull-requests: write
runs-on: ubuntu-latest
name: An action for automatically labelling pull requests based on the changed lines count
steps:
- name: Set change count labels
uses: vkirilichev/changed-lines-count-labeler@v0.2
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
configuration-path: .github/changed-lines-count-labeler.yml

0 comments on commit 27bf88c

Please sign in to comment.