Skip to content

Commit

Permalink
ci(layout): use latest craft generation
Browse files Browse the repository at this point in the history
Signed-off-by: kilianpaquier <[email protected]>
  • Loading branch information
kilianpaquier committed Oct 27, 2024
1 parent 12479fe commit 025e608
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 65 deletions.
2 changes: 1 addition & 1 deletion .github/actions/version/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ inputs:
- "release" to get the next version number and create pull requests, tags and releases
required: true
token:
description: Github access token
description: GitHub access token
required: true

outputs:
Expand Down
40 changes: 0 additions & 40 deletions .github/workflows/build.yml

This file was deleted.

49 changes: 25 additions & 24 deletions .releaserc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,18 +23,18 @@ plugins:
- preset: conventionalcommits
presetConfig:
types:
- { type: feat, section: Features }
- { type: fix, section: Bug Fixes }
- { type: revert, section: Reverts }
- { type: perf, section: Performance Improvements }
- { type: docs, section: Documentation }
- { type: chore, section: Chores }
- { type: refactor, section: Code Refactoring }
- { type: feat, section: "πŸš€ Features" }
- { type: fix, section: "πŸ› Bug Fixes" }
- { type: revert, section: "βͺ Reverts" }
- { type: perf, section: "πŸ’ͺ Performance Improvements" }
- { type: docs, section: "πŸ“š Documentation" }
- { type: chore, section: "βš™οΈ Chores" }
- { type: refactor, section: "🚜 Code Refactoring" }

- { type: build, section: Build System, hidden: true }
- { type: ci, section: Continuous Integration, hidden: true }
- { type: style, section: Styles, hidden: true }
- { type: test, section: Tests, hidden: true }
- { type: build, section: "πŸ—οΈ Build System", hidden: true }
- { type: ci, section: "♾️ Continuous Integration", hidden: true }
- { type: style, section: "Styles", hidden: true }
- { type: test, section: "Tests", hidden: true }
releaseRules:
- { breaking: true, release: major }
- { revert: true, release: patch }
Expand All @@ -56,18 +56,18 @@ plugins:
- preset: conventionalcommits
presetConfig:
types:
- { type: feat, section: Features }
- { type: fix, section: Bug Fixes }
- { type: revert, section: Reverts }
- { type: perf, section: Performance Improvements }
- { type: docs, section: Documentation }
- { type: chore, section: Chores }
- { type: refactor, section: Code Refactoring }
- { type: feat, section: "πŸš€ Features" }
- { type: fix, section: "πŸ› Bug Fixes" }
- { type: revert, section: "βͺ Reverts" }
- { type: perf, section: "πŸ’ͺ Performance Improvements" }
- { type: docs, section: "πŸ“š Documentation" }
- { type: chore, section: "βš™οΈ Chores" }
- { type: refactor, section: "🚜 Code Refactoring" }

- { type: build, section: Build System, hidden: true }
- { type: ci, section: Continuous Integration, hidden: true }
- { type: style, section: Styles, hidden: true }
- { type: test, section: Tests, hidden: true }
- { type: build, section: "πŸ—οΈ Build System", hidden: true }
- { type: ci, section: "♾️ Continuous Integration", hidden: true }
- { type: style, section: "Styles", hidden: true }
- { type: test, section: "Tests", hidden: true }
parserOpts:
noteKeywords:
- BREAKING CHANGE
Expand All @@ -82,9 +82,10 @@ plugins:
message: "chore(release): v${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
- - "@semantic-release/github"
- draftRelease: false
failComment: ⚠️ Expected release for branch '${branch.name}' has failed due to the following errors:\n- ${errors.map(err => err.message).join('\\n- ')}
failCommentCondition: false
successComment: πŸŽ‰ This issue has been resolved in version v${nextRelease.version} πŸŽ‰
failComment: false
failTitle: false
successCommentCondition: true
assets:
- label: CHANGELOG.md
path: CHANGELOG.md
Expand Down

0 comments on commit 025e608

Please sign in to comment.