mirror of
https://github.com/TeamNewPipe/NewPipe
synced 2024-11-05 09:36:22 +00:00
19 lines
513 B
YAML
19 lines
513 B
YAML
name: "PR size labeler"
|
|
on: [pull_request_target]
|
|
permissions:
|
|
contents: read
|
|
pull-requests: write
|
|
|
|
jobs:
|
|
changed-lines-count-labeler:
|
|
runs-on: ubuntu-latest
|
|
name: Automatically labelling pull requests based on the changed lines count
|
|
permissions:
|
|
pull-requests: write
|
|
steps:
|
|
- name: Set a label
|
|
uses: TeamNewPipe/changed-lines-count-labeler@main
|
|
with:
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
configuration-path: .github/changed-lines-count-labeler.yml
|