Skip to content

Commit

Permalink
build(release-please): Add missing PR title prefixes to the workflow (#…
Browse files Browse the repository at this point in the history
…2918)

Signed-off-by: Marcin Procyk <[email protected]>
  • Loading branch information
mpro7 authored Nov 7, 2023
1 parent 21550ce commit 142fee0
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ Issue Number: DEV-

### PR Type

- [ ] chore: maintenance tasks (no production code change)
- [ ] build/chore: maintenance tasks (no production code change)
- [ ] docs: documentation changes (no production code change)
- [ ] feat: represents a new feature
- [ ] feat: represents new features
- [ ] fix: represents bug fixes
- [ ] perf: performance improvements
- [ ] refactor: represents production code refactoring
- [ ] test: all about tests: adding, refactoring tests (no production code change)
- [ ] test: adding or refactoring tests (no production code change)

### Basic Requirements for bug fixes and features
### Basic requirements for bug fixes and features

- [ ] Tests for the changes have been added
- [ ] Docs have been added / updated
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,12 @@ jobs:
package-name: dsp-api
pull-request-title-pattern: "chore${scope}: Release${component} ${version}"
changelog-types: '[
{"type": "feat", "section": "Enhancements", "hidden": false },
{"type": "fix", "section": "Bug Fixes", "hidden": false },
{"type": "build", "section": "Maintenance", "hidden": false },
{"type": "chore", "section": "Maintenance", "hidden": false },
{"type": "test", "section": "Maintenance", "hidden": false },
{"type": "docs", "section": "Documentation", "hidden": false },
{"type": "feat", "section": "Enhancements", "hidden": false },
{"type": "fix", "section": "Bug Fixes", "hidden": false },
{"type": "perf", "section": "Enhancements", "hidden": false },
{"type": "refactor", "section": "Maintenance", "hidden": false },
{"type": "docs", "section": "Documentation", "hidden": false }
{"type": "test", "section": "Maintenance", "hidden": false }
]'

0 comments on commit 142fee0

Please sign in to comment.