Pull Request Labeler #34
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: | |
# Apply labels to pull requests based on which files were edited | |
labeler: | |
permissions: | |
contents: read | |
pull-requests: write | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set basic labels | |
uses: actions/labeler@v5 | |
with: | |
sync-labels: true | |
# Apply labels to pull requests based on how many lines were edited | |
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 |