mirror of
https://github.com/neovim/neovim.git
synced 2026-03-07 08:41:49 +10:00
Mostly rename file and variable names to be more consistent. This makes it easier to locate them in the "Actions" tab on github.
32 lines
937 B
YAML
32 lines
937 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(/\s+/).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)
|
|
})
|
|
}
|