-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(workflows): update workflow, configuration, documentation, and d…
…ependencies - Update `.github/workflows/release-please.yaml` to remove `release-type: node` specification. - Modify `.release-please-config.json`: - Update `packages` path and version. - Change `package-name` to `@tsdevau/codewars-kata-archiver`. - Update `release-commit-message-pattern` and `pull-request-title-pattern` formats. - Refine `changelog-sections` categories and descriptions. - Update `LICENSE` to reflect copyright change to 2022-2024 @tsdevau. - Refine `README.md` for clarity and accuracy in descriptions and goals. - Adjust build target in `build.mjs` from `node18` to `node20`. - Update package versions in `package.json`: - Update `puppeteer` to `^22.1.0`. - Modify devDependencies: `@types/node`, `@typescript-eslint/eslint-plugin`, `@typescript-eslint/parser`, and `prettier-plugin-packagejson`. - Reflect these package updates in `pnpm-lock.yaml`. These changes enhance the project's automation workflow, update copyright and documentation for better clarity, and keep the dependencies up to date. The modifications in build configuration and dependencies ensure compatibility with the latest technologies and best practices.
- Loading branch information
Showing
10 changed files
with
194 additions
and
123 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Set to true to add reviewers to pull requests | ||
addReviewers: true | ||
|
||
# Set to true to add assignees to pull requests | ||
addAssignees: true | ||
|
||
# A list of reviewers to be added to pull requests (GitHub user name) | ||
reviewers: | ||
- tsdevau | ||
|
||
# A number of reviewers added to the pull request | ||
# Set 0 to add all the reviewers (default: 0) | ||
numberOfReviewers: 0 | ||
# A list of assignees, overrides reviewers if set | ||
# assignees: | ||
# - tsdevau | ||
|
||
# A number of assignees to add to the pull request | ||
# Set to 0 to add all of the assignees. | ||
# Uses numberOfReviewers if unset. | ||
# numberOfAssignees: 2 | ||
|
||
# A list of keywords to be skipped the process that add reviewers if pull requests include it | ||
# skipKeywords: | ||
# - wip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
on: | ||
issues: | ||
types: [opened, reopened, unassigned] | ||
pull_request: | ||
types: [opened, reopened, unassigned, ready_for_review, review_requested] | ||
|
||
name: Auto Assign | ||
|
||
jobs: | ||
add-reviews: | ||
name: Assign Assignee and Reviewers | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: kentaro-m/[email protected] | ||
with: | ||
configuration-path: .github/auto-assign.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,23 @@ | ||
{ | ||
"packages": { | ||
"path/to/pkg": "." | ||
".": "2.1.1" | ||
}, | ||
"package-name": "@tsdevau/codewars-kata-archiver", | ||
"release-type": "node", | ||
"release-commit-message-pattern": "chore${scope}: 🔖 release `@tsdevau/codewars-kata-archiver` -> v${version}", | ||
"pull-request-title-pattern": "chore${scope}: 🔖 `@tsdevau/codewars-kata-archiver` -> v${version}", | ||
"release-commit-message-pattern": "build(${scope}): 🔖 Release ${component} v${version}", | ||
"pull-request-title-pattern": "build(${scope}): 🔖 Release ${component} v${version}", | ||
"pull-request-header": ":robot: PR by release-please bot", | ||
"changelog-sections": [ | ||
{ "type": "feat", "section": "Features & Performance Improvements" }, | ||
{ "type": "perf", "section": "Features & Performance Improvements" }, | ||
{ "type": "style", "section": "Styles & UX Improvements" }, | ||
{ "type": "fix", "section": "Bug Fixes" }, | ||
{ "type": "revert", "section": "Work in Progress" }, | ||
{ "type": "wip", "section": "Work In Progress" }, | ||
{ "type": "init", "section": "Work in Progress" }, | ||
{ "type": "wip", "section": "Work in Progress" }, | ||
{ "type": "docs", "section": "Documentation" }, | ||
{ "type": "refactor", "section": "Code & DX Improvements" }, | ||
{ "type": "chore", "section": "DX Improvements & Configuration" }, | ||
{ "type": "build", "section": "DX Improvements & Configuration" }, | ||
{ "type": "test", "section": "DX Improvements & Configuration" }, | ||
{ "type": "ci", "section": "DX Improvements & Configuration" } | ||
{ "type": "refactor", "section": "DX Improvements" }, | ||
{ "type": "style", "section": "DX Improvements" }, | ||
{ "type": "chore", "section": "DX Maintenance & Configuration" }, | ||
{ "type": "build", "section": "DX Maintenance & Configuration" }, | ||
{ "type": "test", "section": "DX Testing" }, | ||
{ "type": "ci", "section": "DX Continuous Integrations" } | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
".": "2.1.1" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.