Test issue for GH automation (should be assigned) #151
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: Auto assign | |
on: | |
issues: | |
types: [opened] | |
jobs: | |
auto_assign: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
name: Checkout | |
- name: Randomly assign reviewers to community issues | |
uses: actions/github-script@v7 | |
with: | |
github-token: "${{ secrets.GITHUB_TOKEN }}" | |
script: | | |
const fullTeam = [ | |
"andyw8", | |
"dirceu", | |
"paracycle", | |
"vinistock", | |
"rafaelfranca", | |
"Morriar", | |
"st0012", | |
"egiurleo", | |
"KaanOzkan" | |
]; | |
const author = "${{ github.event.issue.user.login }}"; | |
const issue = await github.rest.issues.get({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
issue_number: ${{ github.event.issue.number }} | |
}); | |
const hasNonVSCodeLabel = issue.data.labels.some(label => label.name === 'non-vscode'); | |
if (!fullTeam.includes(author) && !hasNonVSCodeLabel) { | |
const dxReviewers = [ | |
"andyw8", | |
"vinistock", | |
"st0012", | |
]; | |
const assignee = dxReviewers[Math.floor(Math.random() * dxReviewers.length)]; | |
await github.rest.issues.addAssignees({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
issue_number: ${{ github.event.issue.number }}, | |
assignees: [assignee] | |
}); | |
} |