Skip to content
This repository has been archived by the owner on Nov 30, 2022. It is now read-only.

Commit

Permalink
Merge pull request #133 from technote-space/release/next-v2.2.9
Browse files Browse the repository at this point in the history
release: v2.2.10
  • Loading branch information
technote-space committed Nov 12, 2021
2 parents f823b41 + 5056710 commit 76b6242
Show file tree
Hide file tree
Showing 3 changed files with 1,140 additions and 1,091 deletions.
52 changes: 26 additions & 26 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@technote-space/broken-link-checker-action",
"version": "2.2.9",
"version": "2.2.10",
"description": "GitHub Actions to check broken links and create issues.",
"keywords": [
"github",
Expand All @@ -27,43 +27,43 @@
"scripts": {
"build": "tsc",
"cover": "jest --coverage",
"postinstall": "[ -n \"$CI\" ] || [ ! -f node_modules/.bin/husky ] || husky install",
"lint": "eslint 'src/**/*.ts' '__tests__/**/*.ts' --cache",
"lint:fix": "eslint --fix 'src/**/*.ts' '__tests__/**/*.ts'",
"release": "yarn release-ga --test",
"test": "yarn lint && yarn cover",
"update": "npm_config_yes=true npx npm-check-updates -u --timeout 100000 && yarn install && yarn upgrade && yarn audit",
"postinstall": "[ -n \"$CI\" ] || [ ! -f node_modules/.bin/husky ] || husky install"
"update": "npm_config_yes=true npx npm-check-updates -u --timeout 100000 && yarn install && yarn upgrade && yarn audit"
},
"dependencies": {
"@actions/core": "^1.5.0",
"@actions/core": "^1.6.0",
"@actions/github": "^5.0.0",
"@octokit/openapi-types": "^10.1.0",
"@octokit/plugin-paginate-rest": "^2.16.0",
"@octokit/plugin-rest-endpoint-methods": "^5.10.0",
"@octokit/types": "^6.27.0",
"@technote-space/github-action-helper": "^5.2.20",
"@technote-space/github-action-log-helper": "^0.1.40",
"@octokit/openapi-types": "^11.2.0",
"@octokit/plugin-paginate-rest": "^2.17.0",
"@octokit/plugin-rest-endpoint-methods": "^5.13.0",
"@octokit/types": "^6.34.0",
"@technote-space/github-action-helper": "^5.2.23",
"@technote-space/github-action-log-helper": "^0.1.41",
"broken-link-checker": "^0.7.8",
"install": "^0.13.0",
"object-hash": "^2.2.0"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@technote-space/github-action-test-helper": "^0.7.27",
"@technote-space/release-github-actions-cli": "^1.8.6",
"@types/jest": "^27.0.1",
"@types/node": "^16.7.10",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"eslint": "^7.32.0",
"husky": "^7.0.2",
"jest": "^27.1.0",
"jest-circus": "^27.1.0",
"lint-staged": "^11.1.2",
"nock": "^13.1.3",
"ts-jest": "^27.0.5",
"typescript": "^4.4.2"
"@commitlint/cli": "^14.1.0",
"@commitlint/config-conventional": "^14.1.0",
"@technote-space/github-action-test-helper": "^0.7.28",
"@technote-space/release-github-actions-cli": "^1.8.7",
"@types/jest": "^27.0.2",
"@types/node": "^16.11.7",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"eslint": "^8.2.0",
"husky": "^7.0.4",
"jest": "^27.3.1",
"jest-circus": "^27.3.1",
"lint-staged": "^11.2.6",
"nock": "^13.2.1",
"ts-jest": "^27.0.7",
"typescript": "^4.4.4"
},
"publishConfig": {
"access": "public"
Expand Down
2 changes: 1 addition & 1 deletion src/utils/issue.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {components} from '@octokit/openapi-types';
import {getIssueTitle, getIssueBody, getIssueLabels, getIssueAssignees} from './misc';
import {BrokenLink} from '../types';

type IssuesListForRepoResponseData = components['schemas']['issue-simple'];
type IssuesListForRepoResponseData = components['schemas']['issue'];
type IssuesCreateResponseData = components['schemas']['issue'];
type IssuesUpdateResponseData = components['schemas']['issue'];

Expand Down
Loading

0 comments on commit 76b6242

Please sign in to comment.