mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-05 08:25:32 +00:00
19 lines
595 B
YAML
19 lines
595 B
YAML
name: "Pull Request Labeler"
|
|
on:
|
|
- pull_request
|
|
|
|
jobs:
|
|
triage:
|
|
if: github.repository == 'keymanapp/keyman'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Update labels based on changed files
|
|
uses: actions/labeler@634933edcd8ababfe52f92936142cc22ac488b1b # v6.0.1
|
|
with:
|
|
repo-token: "${{ secrets.GITHUB_TOKEN }}"
|
|
- name: Update labels based on PR title
|
|
id: labeler
|
|
uses: fuxingloh/multi-labeler@f5bd7323b53b0833c1e4ed8d7b797ae995ef75b4 # v2.0.1
|
|
with:
|
|
github-token: ${{secrets.GITHUB_TOKEN}}
|
|
config-path: .github/multi-labeler.yml
|