mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 11:15:14 -07:00
68e2d72295
"doc" label doesn't exist and mentioning "doc" doesn't mean anything.
35 lines
972 B
YAML
35 lines
972 B
YAML
name: Issue Open Check
|
|
|
|
on:
|
|
issues:
|
|
types: [opened]
|
|
|
|
jobs:
|
|
issue-open-check:
|
|
permissions:
|
|
issues: write
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: check issue title
|
|
id: check-issue
|
|
uses: actions/github-script@v6
|
|
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)
|
|
})
|
|
}
|