Skip to content

Commit

Permalink
Merge pull request #100 from technote-space/release/next-v1.8.5
Browse files Browse the repository at this point in the history
release: v1.8.6
  • Loading branch information
technote-space authored Jun 23, 2021
2 parents 5a82e0d + bb4a3c3 commit 50e315e
Show file tree
Hide file tree
Showing 4 changed files with 1,223 additions and 2,231 deletions.
3 changes: 3 additions & 0 deletions __tests__/misc.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,9 @@ describe('getContext', () => {
job: '',
runId: 1,
runNumber: 1,
apiUrl: '',
serverUrl: '',
graphqlUrl: '',
});
});
});
Expand Down
34 changes: 17 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@technote-space/release-github-actions-cli",
"version": "1.8.5",
"version": "1.8.6",
"description": "Release GitHub Actions Cli",
"keywords": [
"github",
Expand Down Expand Up @@ -41,30 +41,30 @@
"postpublish": "[ -n \"$CI\" ] || [ ! -f node_modules/.bin/pinst ] || pinst --enable"
},
"dependencies": {
"@technote-space/github-action-helper": "^5.2.6",
"@technote-space/github-action-log-helper": "^0.1.24",
"@technote-space/release-github-actions": "^7.0.5",
"@technote-space/github-action-helper": "^5.2.9",
"@technote-space/github-action-log-helper": "^0.1.28",
"@technote-space/release-github-actions": "^7.0.6",
"commander": "^7.2.0",
"cosmiconfig": "^7.0.0",
"dotenv": "^8.2.0",
"dotenv": "^10.0.0",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@technote-space/github-action-test-helper": "^0.7.9",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@technote-space/github-action-test-helper": "^0.7.13",
"@types/jest": "^26.0.23",
"@types/node": "^15.0.1",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.25.0",
"@types/node": "^15.12.4",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"eslint": "^7.29.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"jest-circus": "^26.6.3",
"lint-staged": "^10.5.4",
"jest": "^27.0.5",
"jest-circus": "^27.0.5",
"lint-staged": "^11.0.0",
"pinst": "^2.1.6",
"ts-jest": "^26.5.5",
"typescript": "^4.2.4"
"ts-jest": "^27.0.3",
"typescript": "^4.3.4"
},
"publishConfig": {
"access": "public"
Expand Down
3 changes: 3 additions & 0 deletions src/misc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,9 @@ export const getContext = (args: ContextArgs): Context => ({
job: '',
runId: 1,
runNumber: 1,
apiUrl: '',
serverUrl: '',
graphqlUrl: '',
});

export const getGitHelper = (): GitHelper => new GitHelper(new Logger());
Loading

0 comments on commit 50e315e

Please sign in to comment.