mirror of
https://github.com/neovim/neovim.git
synced 2024-12-19 18:55:14 -07:00
d94adff48b
Splitting it on word boundaries rather than only spaces allows for better detection. The issue labeler previously didn't catch titles such as `treesitter: noisy "Invalid node type" error`. Co-authored-by: casswedson <casswedson@users.noreply.github.com>
32 lines
936 B
YAML
32 lines
936 B
YAML
name: "labeler: issue"
|
|
on:
|
|
issues:
|
|
types: [opened]
|
|
jobs:
|
|
labeler:
|
|
permissions:
|
|
issues: write
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: check issue title
|
|
uses: actions/github-script@v7
|
|
with:
|
|
script: |
|
|
const title = context.payload.issue.title;
|
|
const titleSplit = title.split(/\b/).map(e => e.toLowerCase());
|
|
const keywords = ['api', 'treesitter', 'ui', 'lsp'];
|
|
var match = new Set();
|
|
for (const keyword of keywords) {
|
|
if (titleSplit.includes(keyword)) {
|
|
match.add(keyword)
|
|
}
|
|
}
|
|
if (match.size !== 0) {
|
|
github.rest.issues.addLabels({
|
|
owner: context.repo.owner,
|
|
repo: context.repo.repo,
|
|
issue_number: context.issue.number,
|
|
labels: Array.from(match)
|
|
})
|
|
}
|