Skip to content

Commit 8461e0d

Browse files
authored
Merge pull request #44 from vbetsch/develop
test: Test release drafter
2 parents 276fff4 + be58a0e commit 8461e0d

File tree

3 files changed

+99
-0
lines changed

3 files changed

+99
-0
lines changed

.github/release-drafter.yml

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
template: |
2+
## Deployment Status
3+
4+
| Environment | Status | Deployment Date | URL |
5+
|------------:|:------:|:---------------:|:----|
6+
| Development | | | |
7+
| Staging | | | |
8+
| Production | | | |
9+
10+
### Test Status
11+
12+
| Test Type | Status | Coverage |
13+
|-------------------|:------:|:--------:|
14+
| Unit tests (Jest) | | |
15+
| Linter (ESLint) | | |
16+
| Build | | |
17+
18+
## What's Changed
19+
20+
### Added
21+
{{#changes added}}
22+
* {{ this.title }} ({{ this.pullRequest.html_url }})
23+
{{/changes}}
24+
25+
### Changed
26+
{{#changes changed}}
27+
* {{ this.title }} ({{ this.pullRequest.html_url }})
28+
{{/changes}}
29+
30+
### Fixed
31+
{{#changes fixed}}
32+
* {{ this.title }} ({{ this.pullRequest.html_url }})
33+
{{/changes}}
34+
35+
### Security
36+
{{#changes security}}
37+
* {{ this.title }} ({{ this.pullRequest.html_url }})
38+
{{/changes}}
39+
40+
categories:
41+
- title: "Added"
42+
label: "release:add"
43+
description: "New features"
44+
- title: "Changed"
45+
label: "release:change"
46+
description: "Code refactoring"
47+
- title: "Fixed"
48+
label: "release:fix"
49+
description: "Bug fixes"
50+
- title: "Security"
51+
label: "release:security"
52+
description: "Security improvements"

.github/release_template.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
## Deployment Status
2+
3+
| Environment | Status | Deployment Date | URL |
4+
|------------:|:------:|:---------------:|:----|
5+
| Development | | | |
6+
| Staging | | | |
7+
| Production | | | |
8+
9+
### Test Status
10+
11+
| Test Type | Status | Coverage |
12+
|-------------------|:------:|:--------:|
13+
| Unit tests (Jest) | | |
14+
| Linter (ESLint) | | |
15+
| Build | | |
16+
17+
## What's Changed
18+
19+
### Added
20+
21+
*
22+
23+
### Changed
24+
25+
*
26+
27+
### Fixed
28+
29+
*
30+
31+
### Security
32+
33+
*
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Release Drafter
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
update_release_draft:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: release-drafter/release-drafter@v5
13+
with:
14+
config-name: release-drafter.yml

0 commit comments

Comments
 (0)