Skip to content

Commit c75e2f4

Browse files
Merge pull request #344 from technote-space/release/next-v4.4.4
release: v4.4.5
2 parents ad49152 + b919e44 commit c75e2f4

File tree

3 files changed

+124
-127
lines changed

3 files changed

+124
-127
lines changed

package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@technote-space/github-action-helper",
3-
"version": "4.4.4",
3+
"version": "4.4.5",
44
"description": "Helper for GitHub Action.",
55
"keywords": [
66
"github",
@@ -38,26 +38,26 @@
3838
"@actions/github": "^4.0.0",
3939
"@octokit/openapi-types": "^2.0.0",
4040
"@octokit/plugin-rest-endpoint-methods": "^4.4.1",
41-
"@technote-space/github-action-log-helper": "^0.1.9",
41+
"@technote-space/github-action-log-helper": "^0.1.10",
4242
"shell-escape": "^0.2.0",
4343
"sprintf-js": "^1.1.2"
4444
},
4545
"devDependencies": {
4646
"@commitlint/cli": "^11.0.0",
4747
"@commitlint/config-conventional": "^11.0.0",
48-
"@technote-space/github-action-test-helper": "^0.6.5",
49-
"@types/jest": "^26.0.16",
50-
"@types/node": "^14.14.10",
51-
"@typescript-eslint/eslint-plugin": "^4.9.0",
52-
"@typescript-eslint/parser": "^4.9.0",
48+
"@technote-space/github-action-test-helper": "^0.6.6",
49+
"@types/jest": "^26.0.19",
50+
"@types/node": "^14.14.13",
51+
"@typescript-eslint/eslint-plugin": "^4.9.1",
52+
"@typescript-eslint/parser": "^4.9.1",
5353
"eslint": "^7.15.0",
54-
"husky": "^4.3.4",
54+
"husky": "^4.3.6",
5555
"jest": "^26.6.3",
5656
"jest-circus": "^26.6.3",
5757
"lint-staged": "^10.5.3",
5858
"nock": "^13.0.5",
5959
"ts-jest": "^26.4.4",
60-
"typescript": "^4.1.2"
60+
"typescript": "^4.1.3"
6161
},
6262
"publishConfig": {
6363
"access": "public"

src/api-helper.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,6 @@ export default class ApiHelper {
320320
public pullsUpdate = async(number: number, detail: PullsUpdateParams): Promise<PullsUpdateResponseData> => this.getResponseData((this.octokit as RestEndpointMethods).pulls.update({
321321
...this.context.repo,
322322
'pull_number': number,
323-
base: (await this.getRefForUpdate(false)).replace(/^heads\//, ''),
324323
state: 'open',
325324
...detail,
326325
}));
@@ -508,7 +507,6 @@ export default class ApiHelper {
508507

509508
await this.pullsUpdate(pullRequest.number, {
510509
state: 'closed',
511-
base: undefined,
512510
});
513511
} else {
514512
this.callLogger(logger => logger.info('There is no PullRequest named [%s]', branchName));

0 commit comments

Comments
 (0)