feat(StarryNight): add forest, cotton candy, galaxy, sky, sunrise theme and fix invisible E in explicit symbol #554
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Theme Assigner | |
on: | |
issues: | |
types: [opened, edited] | |
pull_request: | |
types: [opened, edited] | |
jobs: | |
assign: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/github-script@v7 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
script: | | |
const keywordsToAssigneesMap = { | |
BurntSienna: ["pjaspinski"], | |
Default: ["Blacksuan19"], | |
Dreary: ["CharlieS1103"], | |
Dribbblish: ["khanhas"], | |
Glaze: ["CharlieS1103"], | |
Onepunch: ["okarin001"], | |
Sleek: ["harbassan"], | |
Turntable: ["grasonchan"], | |
Ziro: ["schnensch0"], | |
Flow: ["ian-Liaozy", "Ruixi-Zhang"], | |
Matte: ["darkthemer"], | |
Blossom: ["Robatortas"], | |
Nightlight: ["iTenerai"], | |
}; | |
const issue = await github.rest.issues.get({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
issue_number: context.issue.number, | |
}); | |
const title = issue.data.title; | |
const body = issue.data.body; | |
const assignees = []; | |
for (const [keyword, assignee] of Object.entries(keywordsToAssigneesMap)) { | |
if (title.match(new RegExp(`\\b${keyword}\\b`, "i")) || body.match(new RegExp(`\\b${keyword}\\b`, "i"))) { | |
assignees.push(...assignee); | |
} | |
} | |
await github.rest.issues.addAssignees({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
issue_number: context.issue.number, | |
assignees: assignees, | |
}); |