Skip to content

Commit 39d80e5

Browse files
authored
fix Await GithubAPI topics response (#585)
1 parent 86063aa commit 39d80e5

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

docs/changelog.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
CHANGELOG
22
=====================================
3+
| August 26, 2021 : fix: Await GithubAPI topics response `#585 <https://github.com/mergeability/mergeable/pull/585>`_
34
| August 10, 2021 : feat: New labels API `#577 <https://github.com/mergeability/mergeable/pull/577>`_
45
| August 6, 2021 : feat: Add team assignment to request_review action `#574 <https://github.com/mergeability/mergeable/pull/574>`_
56
| August 6, 2021 : feat: Support must_include and must_exclude regex as an array `#575 <https://github.com/mergeability/mergeable/pull/575>`_

lib/filters/options_processor/topics.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ const repoTopics = async (context) => {
2424
}
2525
}
2626

27-
const response = GithubAPI.getAllTopics(context, {
27+
const response = await GithubAPI.getAllTopics(context, {
2828
owner: context.payload.repository.owner.login,
2929
repo: context.payload.repository.name
3030
})

0 commit comments

Comments
 (0)