mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-05 00:15:32 +00:00
This addresses the code review comments: - fuxingloh/multi-labeler is written in Typescript - config in different file - only looking at the PR title, not the description # Keyman Conventional Commit suggestions: # - Consider appending the text ". Fixes #3869" to your commit message.
18 lines
529 B
YAML
18 lines
529 B
YAML
name: "Pull Request Labeler"
|
|
on:
|
|
- pull_request
|
|
|
|
jobs:
|
|
triage:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Update labels based on changed files
|
|
uses: actions/labeler@4b52aec09ba832eb9aecccddbccce644ba9ba69d
|
|
with:
|
|
repo-token: "${{ secrets.GITHUB_TOKEN }}"
|
|
- name: Update labels based on PR title
|
|
id: labeler
|
|
uses: fuxingloh/multi-labeler@8afa186ed03230c98fe24ebf9fe35093072ad46e
|
|
with:
|
|
github-token: ${{secrets.GITHUB_TOKEN}}
|
|
config-path: .github/multi-labeler.yml
|