mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-05 00:15:32 +00:00
fix(common): Fix cherry-pick labeling
My previous commit escaped the parens which should be part of the regex.
This commit is contained in:
parent
764fe6421a
commit
01789142bc
2 changed files with 2 additions and 2 deletions
2
.github/multi-labeler.yml
vendored
2
.github/multi-labeler.yml
vendored
|
|
@ -64,4 +64,4 @@ labels:
|
|||
|
||||
- label: 'cherry-pick'
|
||||
matcher:
|
||||
title: '\(🍒|:cherries:\)'
|
||||
title: '(🍒|:cherries:)'
|
||||
|
|
|
|||
2
.github/workflows/labeler.yml
vendored
2
.github/workflows/labeler.yml
vendored
|
|
@ -12,7 +12,7 @@ jobs:
|
|||
repo-token: "${{ secrets.GITHUB_TOKEN }}"
|
||||
- name: Update labels based on PR title
|
||||
id: labeler
|
||||
uses: fuxingloh/multi-labeler@8afa186ed03230c98fe24ebf9fe35093072ad46e
|
||||
uses: fuxingloh/multi-labeler@8afa186ed03230c98fe24ebf9fe35093072ad46e # v1.4.0
|
||||
with:
|
||||
github-token: ${{secrets.GITHUB_TOKEN}}
|
||||
config-path: .github/multi-labeler.yml
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue