Skip to content

Commit d445a7e

Browse files
committed
feat: add optional only-labels input
1 parent 7fd9952 commit d445a7e

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

dist/index.js

Lines changed: 4 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/__tests__/octokit-queries.test.ts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,13 @@ describe('getTeamSlugsForAuthor', () => {
7171

7272
describe('with only/ignored teams', () => {
7373
beforeEach(async () => {
74-
teamSlugs = await getTeamSlugsForAuthor(octokit, 'ORG', 'USER', ['team-active'], ['team-active']);
74+
teamSlugs = await getTeamSlugsForAuthor(
75+
octokit,
76+
'ORG',
77+
'USER',
78+
['team-active'],
79+
['team-active'],
80+
);
7581
});
7682

7783
it('applies ignored teams', () => {

0 commit comments

Comments
 (0)