From c54cd6d3a5ca1ddcb80ea85cdcd0acb8e556f8a7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 24 Feb 2022 12:57:34 +0900 Subject: [PATCH 1/7] chore(release): 1.11.3 (#169) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- CHANGELOG.md | 7 +++++++ package.json | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 520ff9a..eccda94 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +### [1.11.3](https://github.com/kufu/textlint-rule-preset-smarthr/compare/v1.11.2...v1.11.3) (2022-02-24) + + +### Bug Fixes + +* "振り込み"の正規表現が正しくないので修正 ([#167](https://github.com/kufu/textlint-rule-preset-smarthr/issues/167)) ([5894411](https://github.com/kufu/textlint-rule-preset-smarthr/commit/58944111dccbf197ca66b95bc90492ce76f34ff0)) + ### [1.11.2](https://github.com/kufu/textlint-rule-preset-smarthr/compare/v1.11.1...v1.11.2) (2022-02-22) ### [1.11.1](https://github.com/kufu/textlint-rule-preset-smarthr/compare/v1.11.0...v1.11.1) (2022-01-07) diff --git a/package.json b/package.json index b33cc94..75794e3 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "version": "1.11.2", + "version": "1.11.3", "keywords": [ "textlint", "textlintrule", From 8694cdb025ccd5df7342c02f86fb14c5b631611a Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 9 Mar 2022 11:45:46 +0900 Subject: [PATCH 2/7] chore: update actions/checkout action to v3 (#177) Co-authored-by: Renovate Bot --- .github/workflows/PullRequestAndExportAirtable.yml | 2 +- .github/workflows/closeReleaseCandidate.yml | 2 +- .github/workflows/publishRelease.yml | 2 +- .github/workflows/startRelease.yml | 2 +- .github/workflows/test.yml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/PullRequestAndExportAirtable.yml b/.github/workflows/PullRequestAndExportAirtable.yml index 70edb5e..02afbfb 100644 --- a/.github/workflows/PullRequestAndExportAirtable.yml +++ b/.github/workflows/PullRequestAndExportAirtable.yml @@ -9,7 +9,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Setup NodeJS uses: actions/setup-node@v2 diff --git a/.github/workflows/closeReleaseCandidate.yml b/.github/workflows/closeReleaseCandidate.yml index 88cd2bd..d177f75 100644 --- a/.github/workflows/closeReleaseCandidate.yml +++ b/.github/workflows/closeReleaseCandidate.yml @@ -10,6 +10,6 @@ jobs: if: contains(github.event.issue.labels.*.name, 'release candidate') runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: delete branch run: git push origin :release-candidate diff --git a/.github/workflows/publishRelease.yml b/.github/workflows/publishRelease.yml index 09fb406..946717a 100644 --- a/.github/workflows/publishRelease.yml +++ b/.github/workflows/publishRelease.yml @@ -13,7 +13,7 @@ jobs: CHANGELOG_PATH: /tmp/CHANGELOG.md IS_PRERELEASE: ${{ contains(github.event.issue.labels.*.name, 'prerelease') }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: ref: release-candidate fetch-depth: 0 diff --git a/.github/workflows/startRelease.yml b/.github/workflows/startRelease.yml index 858001c..43b396f 100644 --- a/.github/workflows/startRelease.yml +++ b/.github/workflows/startRelease.yml @@ -23,7 +23,7 @@ jobs: IS_PRERELEASE: ${{ github.event.inputs.mode == 'prerelease' }} NO_BRANCH_PREPARATION: ${{ github.event.inputs.branch_preparation == 'manual' }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: fetch-depth: 0 - uses: actions/setup-node@v2 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9688d5c..1e9bda8 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,7 +11,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 From e8b251eaccdefd04caa36cd95775c09b1d95c953 Mon Sep 17 00:00:00 2001 From: Shinichi Kogiso Date: Wed, 9 Mar 2022 13:07:53 +0900 Subject: [PATCH 3/7] =?UTF-8?q?feat:=20airtable=E5=87=BA=E5=8A=9B=E7=94=A8?= =?UTF-8?q?action=E3=81=ABtest=E3=82=92=E8=BF=BD=E5=8A=A0=20(#179)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/PullRequestAndExportAirtable.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/PullRequestAndExportAirtable.yml b/.github/workflows/PullRequestAndExportAirtable.yml index 02afbfb..63b241a 100644 --- a/.github/workflows/PullRequestAndExportAirtable.yml +++ b/.github/workflows/PullRequestAndExportAirtable.yml @@ -26,6 +26,9 @@ jobs: - run: yarn export:airtable - run: yarn build + - name: Test + run: yarn test + - name: craete pull request uses: peter-evans/create-pull-request@v3 with: From dcf51dbad8fb843bf4c9d694abd46c6e6a2824ad Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 9 Mar 2022 15:29:54 +0900 Subject: [PATCH 4/7] chore: update dependency airtable to ^0.11.2 (#164) Co-authored-by: Renovate Bot --- package.json | 2 +- yarn.lock | 18 +++++++++--------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/package.json b/package.json index 75794e3..3332ca6 100644 --- a/package.json +++ b/package.json @@ -33,7 +33,7 @@ "@textlint/types": "^12.1.0", "@types/js-yaml": "^4.0.5", "@types/node": "^15.14.9", - "airtable": "^0.11.1", + "airtable": "^0.11.2", "dotenv": "^16.0.0", "fs": "^0.0.1-security", "husky": "^7.0.4", diff --git a/yarn.lock b/yarn.lock index 3d31fec..472b9cb 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1564,16 +1564,16 @@ add-stream@^1.0.0: resolved "https://registry.yarnpkg.com/add-stream/-/add-stream-1.0.0.tgz#6a7990437ca736d5e1288db92bd3266d5f5cb2aa" integrity sha1-anmQQ3ynNtXhKI25K9MmbV9csqo= -airtable@^0.11.1: - version "0.11.1" - resolved "https://registry.yarnpkg.com/airtable/-/airtable-0.11.1.tgz#2fda51da04f5e4be7092351ea7be3cfdcf308347" - integrity sha512-33zBuUDhLl+FWWAFxFjS1a+vJr/b+UK//EV943nuiimChWph6YykQjYPmu/GucQ30g7mgaqq+98uPD4rfDHOgg== +airtable@^0.11.2: + version "0.11.2" + resolved "https://registry.yarnpkg.com/airtable/-/airtable-0.11.2.tgz#509ee68bb83b6f04d1f2cf8c3699ae742194ce83" + integrity sha512-2kYULLdnqa7ZpaWXXfLTNKMzU+BTUBOZ6TPGahpH3KfJB9Sl18ih0v0zV1PIvpDxTWq+u76jGMAya9NDVZJT/Q== dependencies: "@types/node" ">=8.0.0 <15" abort-controller "^3.0.0" abortcontroller-polyfill "^1.4.0" lodash "^4.17.21" - node-fetch "^2.6.1" + node-fetch "^2.6.7" ajv@^6.12.6: version "6.12.6" @@ -3951,10 +3951,10 @@ neo-async@^2.6.0: resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f" integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== -node-fetch@^2.6.1: - version "2.6.6" - resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.6.tgz#1751a7c01834e8e1697758732e9efb6eeadfaf89" - integrity sha512-Z8/6vRlTUChSdIgMa51jxQ4lrw/Jy5SOW10ObaA47/RElsAN2c5Pn8bTgFGWn/ibwzXTE8qwr1Yzx28vsecXEA== +node-fetch@^2.6.7: + version "2.6.7" + resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.7.tgz#24de9fba827e3b4ae44dc8b20256a379160052ad" + integrity sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ== dependencies: whatwg-url "^5.0.0" From f7bbcfbf4416fed46cc29ec1966b1f1e0251721a Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 9 Mar 2022 15:30:28 +0900 Subject: [PATCH 5/7] chore: update actions/setup-node action to v3 (#174) Co-authored-by: Renovate Bot --- .github/workflows/PullRequestAndExportAirtable.yml | 2 +- .github/workflows/publishRelease.yml | 2 +- .github/workflows/startRelease.yml | 2 +- .github/workflows/test.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/PullRequestAndExportAirtable.yml b/.github/workflows/PullRequestAndExportAirtable.yml index 63b241a..792b08f 100644 --- a/.github/workflows/PullRequestAndExportAirtable.yml +++ b/.github/workflows/PullRequestAndExportAirtable.yml @@ -12,7 +12,7 @@ jobs: uses: actions/checkout@v3 - name: Setup NodeJS - uses: actions/setup-node@v2 + uses: actions/setup-node@v3 - name: Create .env file run: | diff --git a/.github/workflows/publishRelease.yml b/.github/workflows/publishRelease.yml index 946717a..a039e3d 100644 --- a/.github/workflows/publishRelease.yml +++ b/.github/workflows/publishRelease.yml @@ -17,7 +17,7 @@ jobs: with: ref: release-candidate fetch-depth: 0 - - uses: actions/setup-node@v2 + - uses: actions/setup-node@v3 with: node-version: 14 registry-url: "https://registry.npmjs.org" diff --git a/.github/workflows/startRelease.yml b/.github/workflows/startRelease.yml index 43b396f..6d13ef2 100644 --- a/.github/workflows/startRelease.yml +++ b/.github/workflows/startRelease.yml @@ -26,7 +26,7 @@ jobs: - uses: actions/checkout@v3 with: fetch-depth: 0 - - uses: actions/setup-node@v2 + - uses: actions/setup-node@v3 with: node-version: 14 - name: git config diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1e9bda8..0c41fe2 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -16,7 +16,7 @@ jobs: fetch-depth: 0 - name: Setup NodeJS 14 - uses: actions/setup-node@v2 + uses: actions/setup-node@v3 with: node-version: 14 From 588146e050359435ca920f78b6fa9da0638c8e8a Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 9 Mar 2022 15:30:48 +0900 Subject: [PATCH 6/7] chore: update dependency ts-node to ^10.7.0 (#175) Co-authored-by: Renovate Bot --- package.json | 2 +- yarn.lock | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index 3332ca6..08401a5 100644 --- a/package.json +++ b/package.json @@ -42,7 +42,7 @@ "standard-version": "^9.3.2", "textlint-scripts": "^12.1.0", "textlint-tester": "^12.1.0", - "ts-node": "^10.5.0", + "ts-node": "^10.7.0", "typescript": "^4.5.5" }, "dependencies": { diff --git a/yarn.lock b/yarn.lock index 472b9cb..d903f9c 100644 --- a/yarn.lock +++ b/yarn.lock @@ -5474,10 +5474,10 @@ ts-node@^10.4.0: make-error "^1.1.1" yn "3.1.1" -ts-node@^10.5.0: - version "10.5.0" - resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-10.5.0.tgz#618bef5854c1fbbedf5e31465cbb224a1d524ef9" - integrity sha512-6kEJKwVxAJ35W4akuiysfKwKmjkbYxwQMTBaAxo9KKAx/Yd26mPUyhGz3ji+EsJoAgrLqVsYHNuuYwQe22lbtw== +ts-node@^10.7.0: + version "10.7.0" + resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-10.7.0.tgz#35d503d0fab3e2baa672a0e94f4b40653c2463f5" + integrity sha512-TbIGS4xgJoX2i3do417KSaep1uRAW/Lu+WAL2doDHC0D6ummjirVOXU5/7aiZotbQ5p1Zp9tP7U6cYhA0O7M8A== dependencies: "@cspotcode/source-map-support" "0.7.0" "@tsconfig/node10" "^1.0.7" From 20987bfd1a952454c99b8e369a50da9e1f90d263 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 15 Mar 2022 20:59:10 +0900 Subject: [PATCH 7/7] [create-pull-request] automated change (#178) Co-authored-by: kuny25 --- dict/prh-idiomatic-usage.yml | 65 ++++++++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) diff --git a/dict/prh-idiomatic-usage.yml b/dict/prh-idiomatic-usage.yml index 03e60b1..0f494ba 100644 --- a/dict/prh-idiomatic-usage.yml +++ b/dict/prh-idiomatic-usage.yml @@ -175,6 +175,22 @@ rules: specs: - from: 出来る to: できる + - expected: のなかで + pattern: + - の中で + prh: >- + 平仮名にしたほうが読みやすい漢字は平仮名にする + https://smarthr.design/products/writing/idiomatic-usage/usage/ + - expected: CSVファイル + pattern: + - csvファイル + prh: 拡張子を付けず「CSVファイル」「Excelファイル」と表記とする + - expected: PDFファイル + pattern: + - pdfファイル + - expected: ZIPファイル + pattern: + - zipファイル - expected: あとで pattern: - /(?- + 平仮名にしたほうが読みやすい漢字は平仮名にする + https://smarthr.design/products/writing/idiomatic-usage/usage/ - expected: ⓪ pattern: - /[🄋⓿🄌]/