Skip to content

Commit

Permalink
feat: setup PR labeler GitHub action
Browse files Browse the repository at this point in the history
  • Loading branch information
hugo-sid authored Apr 22, 2023
1 parent 2e78155 commit f245613
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/pr-labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: PR labeler

on: [pull_request]

jobs:
labeler:
runs-on: ubuntu-latest
name: Label the PR size
steps:
- uses: codelytv/pr-size-labeler@v1
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
xs_label: 'size/xs'
xs_max_size: '10'
s_label: 'size/s'
s_max_size: '20'
m_label: 'size/m'
m_max_size: '50'
l_label: 'size/l'
l_max_size: '100'
xl_label: 'size/xl'
fail_if_xl: 'false'
message_if_xl: >
This PR exceeds the recommended size of 100 lines.
Please ensure that you are NOT addressing multiple issues in one PR.
If the PR is atomic and focuses on a single change, it helps the maintainers.
github_api_url: 'api.github.com'
files_to_ignore: ''

0 comments on commit f245613

Please sign in to comment.