Skip to content

Commit

Permalink
Merge branch 'hotfix/1.1.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
tktcorporation committed Jul 30, 2020
2 parents 112432f + 41bf0e9 commit f10e202
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dist/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "add-issue-links",
"version": "1.1.0",
"version": "1.1.1",
"description": "A GitHub Action for adding an issue reference to a pull request.",
"main": "lib/main.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/domain/pullRequest/pullRequestBody/PullRequestBody.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Position } from 'src/domain/position/Position';
import { Position } from './../../../domain/position/Position';

export class PullRequestBody {
private static issueLinkText = (issueNumber: number) =>
Expand Down
2 changes: 1 addition & 1 deletion src/infrastructure/datastore/PullRequestDataStore.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { GitHub } from '@actions/github';
import { PullRequest } from '../../domain/pullRequest/PullRequest';
import { PullRequestRepository } from './../../application/repository/PullRequestRepository';
import { PullRequestBody } from 'src/domain/pullRequest/pullRequestBody/PullRequestBody';
import { PullRequestBody } from './../../domain/pullRequest/pullRequestBody/PullRequestBody';

export class PullRequestDataStore implements PullRequestRepository {
private readonly client: GitHub['pulls'];
Expand Down

0 comments on commit f10e202

Please sign in to comment.