Skip to content

Commit b9ad930

Browse files
author
Kartik Raj
committed
Okay
1 parent 4b53fd2 commit b9ad930

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/build.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ name: Build
33
on:
44
push:
55
branches:
6-
- 'main'
76
- 'release'
87
- 'release/*'
98
- 'release-*'

.github/workflows/issue-labels.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,10 @@ jobs:
5959
issue_number: context.issue.number,
6060
})
6161
.then((result) => result.data.assignees.map((a) => a.login));
62+
console.log(JSON.stringify(currentAssignees));
63+
console.log(JSON.stringify(knownTriagers));
6264
const assigneesToRemove = currentAssignees.map(a => !knownTriagers.includes(a));
65+
console.log(JSON.stringify(assigneesToRemove));
6366
github.rest.issues.removeAssignees({
6467
owner: context.repo.owner,
6568
repo: context.repo.repo,

0 commit comments

Comments
 (0)