mirror of
https://github.com/neovim/neovim.git
synced 2025-09-06 03:18:16 +00:00
[Backport release-0.9] ci: auto add label according title (#23842)
ci: add issue open check
This commit is contained in:
![41898282+github-actions[bot]@users.noreply.github.com](/assets/img/avatar_default.png)
committed by
GitHub

parent
6edd802840
commit
2113b9e4b0
34
.github/workflows/issue-open-check.yml
vendored
Normal file
34
.github/workflows/issue-open-check.yml
vendored
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
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', 'doc'];
|
||||||
|
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)
|
||||||
|
})
|
||||||
|
}
|
Reference in New Issue
Block a user