Pull Request Labeler #732
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Pull Request Labeler" | |
on: | |
- pull_request_target | |
jobs: | |
labeler: | |
permissions: | |
contents: read | |
pull-requests: write | |
runs-on: ubuntu-latest | |
steps: | |
- 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 |