Skip to content

Commit

Permalink
Merge branch 'refs/heads/main' into HEAD
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed May 15, 2023
2 parents 582adee + 252ed75 commit fd80a81
Show file tree
Hide file tree
Showing 6 changed files with 636 additions and 286 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/PullRequestAndExportAirtable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@ jobs:
run: yarn test

- name: craete pull request
uses: peter-evans/create-pull-request@v4
uses: peter-evans/create-pull-request@v5
with:
title: 'feat: Airtableの最新ルールを反映'
4 changes: 2 additions & 2 deletions .github/workflows/publishRelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,15 +52,15 @@ jobs:
commitish: main
prerelease: ${{ env.IS_PRERELEASE }}
- name: close issue
uses: peter-evans/close-issue@v2
uses: peter-evans/close-issue@v3
- name: delete branch
run: git push origin :release-candidate
- name: cherry-pick release commit
run: |
git checkout main
git cherry-pick $NEW_TAG
- name: craete pull request
uses: peter-evans/create-pull-request@v4
uses: peter-evans/create-pull-request@v5
with:
title: "chore(release): ${{ env.NEW_TAG }}"
branch: "merge-release-${{ env.NEW_TAG }}"
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
with:
fetch-depth: 0

- name: Setup NodeJS 14
- name: Setup NodeJS 16
uses: actions/setup-node@v3
with:
node-version: 14
node-version: 16

- name: Install dependencies
run: yarn install
Expand Down
2 changes: 1 addition & 1 deletion example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"author": "",
"license": "MIT",
"dependencies": {
"textlint": "^12.2.1",
"textlint": "^13.3.2",
"textlint-rule-preset-smarthr": "file:.."
}
}
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,26 +28,26 @@
"export:airtable": "ts-node ./scripts/export-airtable-rules.ts"
},
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@textlint/types": "^12.2.1",
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"@textlint/types": "^13.3.2",
"@types/js-yaml": "^4.0.5",
"@types/node": "^16.18.13",
"@types/node": "^16.18.30",
"airtable": "^0.11.6",
"dotenv": "^16.0.3",
"fs": "^0.0.1-security",
"husky": "^8.0.3",
"js-yaml": "^4.1.0",
"prettier": "^2.8.7",
"prettier": "^2.8.8",
"standard-version": "^9.3.2",
"textlint-scripts": "^12.2.1",
"textlint-tester": "^12.2.1",
"textlint-tester": "^13.3.2",
"textlint-scripts": "^13.3.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
"typescript": "^5.0.4"
},
"dependencies": {
"@textlint-rule/textlint-rule-no-unmatched-pair": "^1.0.9",
"@textlint/module-interop": "^12.2.1",
"@textlint/module-interop": "^13.3.2",
"textlint-rule-ja-hiragana-daimeishi": "^1.0.0",
"textlint-rule-ja-hiragana-hojodoushi": "^1.1.0",
"textlint-rule-ja-keishikimeishi": "^1.0.5",
Expand Down
Loading

0 comments on commit fd80a81

Please sign in to comment.