We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e18d456 commit 549cd3aCopy full SHA for 549cd3a
.github/workflows/auto_assign.yml
@@ -29,8 +29,14 @@ jobs:
29
"KaanOzkan"
30
];
31
const author = "${{ github.event.issue.user.login }}";
32
+ const issue = await github.rest.issues.get({
33
+ owner: context.repo.owner,
34
+ repo: context.repo.repo,
35
+ issue_number: ${{ github.event.issue.number }}
36
+ });
37
+ const hasNonVSCodeLabel = issue.data.labels.some(label => label.name === 'non-vscode');
38
- if (!fullTeam.includes(author)) {
39
+ if (!fullTeam.includes(author) && !hasNonVSCodeLabel) {
40
const dxReviewers = [
41
"andyw8",
42
"vinistock",
0 commit comments