-
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.
build(semver): 🔧 Switch standard-version to release-please action
- Remove depricated standard-version & config - Add github workflow for release-please Github action for semver - Tweak Changelog header/title content - Remove script from package.json for standard-version
- Loading branch information
Tim Stone
committed
Oct 15, 2023
1 parent
d30f45f
commit b2ffeee
Showing
3 changed files
with
58 additions
and
25 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,22 @@ | ||
version: 2 | ||
updates: | ||
|
||
# Maintain dependencies for pnpm | ||
- package-ecosystem: "npm" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
assignees: | ||
- "tsdevau" | ||
reviewers: | ||
- "tsdevau" | ||
|
||
# Maintain dependencies for GitHub Actions | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
assignees: | ||
- "tsdevau" | ||
reviewers: | ||
- "tsdevau" |
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,36 @@ | ||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
permissions: | ||
contents: write | ||
pull-requests: write | ||
|
||
name: release-please | ||
|
||
jobs: | ||
release-please: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: google-github-actions/release-please-action@v3 | ||
with: | ||
release-type: node | ||
package-name: the-carpet-surgeon | ||
pull-request-title-pattern: "chore${scope}: 🔖 `@tsdevau/codewars-kata-solutions` -> v${version}" | ||
pull-request-header: ":robot: PR by release-please bot" | ||
changelog-types: '[ | ||
{ "type": "feat", "section": "Features & Additions" }, | ||
{ "type": "perf", "section": "Performance Improvements" }, | ||
{ "type": "style", "section": "Style & 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": "docs", "section": "Documentation" }, | ||
{ "type": "refactor", "section": "Code & DX Improvements" }, | ||
{ "type": "chore", "section": "General Config Updates" }, | ||
{ "type": "build", "section": "General Config Updates" }, | ||
{ "type": "test", "section": "Test Config Updates" }, | ||
{ "type": "ci", "hidden": true } | ||
]' |
This file was deleted.
Oops, something went wrong.