Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 52 additions & 0 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
template: |
## Deployment Status

| Environment | Status | Deployment Date | URL |
|------------:|:------:|:---------------:|:----|
| Development | | | |
| Staging | | | |
| Production | | | |

### Test Status

| Test Type | Status | Coverage |
|-------------------|:------:|:--------:|
| Unit tests (Jest) | | |
| Linter (ESLint) | | |
| Build | | |

## What's Changed

### Added
{{#changes added}}
* {{ this.title }} ({{ this.pullRequest.html_url }})
{{/changes}}

### Changed
{{#changes changed}}
* {{ this.title }} ({{ this.pullRequest.html_url }})
{{/changes}}

### Fixed
{{#changes fixed}}
* {{ this.title }} ({{ this.pullRequest.html_url }})
{{/changes}}

### Security
{{#changes security}}
* {{ this.title }} ({{ this.pullRequest.html_url }})
{{/changes}}

categories:
- title: "Added"
label: "release:add"
description: "New features"
- title: "Changed"
label: "release:change"
description: "Code refactoring"
- title: "Fixed"
label: "release:fix"
description: "Bug fixes"
- title: "Security"
label: "release:security"
description: "Security improvements"
33 changes: 33 additions & 0 deletions .github/release_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
## Deployment Status

| Environment | Status | Deployment Date | URL |
|------------:|:------:|:---------------:|:----|
| Development | | | |
| Staging | | | |
| Production | | | |

### Test Status

| Test Type | Status | Coverage |
|-------------------|:------:|:--------:|
| Unit tests (Jest) | | |
| Linter (ESLint) | | |
| Build | | |

## What's Changed

### Added

*

### Changed

*

### Fixed

*

### Security

*
14 changes: 14 additions & 0 deletions .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Release Drafter

on:
push:
branches:
- main

jobs:
update_release_draft:
runs-on: ubuntu-latest
steps:
- uses: release-drafter/release-drafter@v5
with:
config-name: release-drafter.yml