mirror of
https://github.com/neovim/neovim.git
synced 2024-12-24 13:15:09 -07:00
64c2c7c40d
Bumps [actions/github-script](https://github.com/actions/github-script) from 6 to 7. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
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@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)
|
|
})
|
|
}
|