Skip to content

Commit

Permalink
Fix isPullRequestMergeable
Browse files Browse the repository at this point in the history
  • Loading branch information
roryabraham committed Jan 29, 2022
1 parent c9cb462 commit eb5a28a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/actions/isPullRequestMergeable/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ module.exports =
const _ = __nccwpck_require__(3571);
const core = __nccwpck_require__(2186);
const GithubUtils = __nccwpck_require__(7999);
const promiseWhile = __nccwpck_require__(4502);
const {promiseWhile} = __nccwpck_require__(4502);

const MAX_RETRIES = 30;
const THROTTLE_DURATION = process.env.NODE_ENV === 'test' ? 5 : 5000;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const _ = require('underscore');
const core = require('@actions/core');
const GithubUtils = require('../../libs/GithubUtils');
const promiseWhile = require('../../libs/promiseWhile');
const {promiseWhile} = require('../../libs/promiseWhile');

const MAX_RETRIES = 30;
const THROTTLE_DURATION = process.env.NODE_ENV === 'test' ? 5 : 5000;
Expand Down

0 comments on commit eb5a28a

Please sign in to comment.