Skip to content

Commit a43bb39

Browse files
authored
ci: use v3, update changelog-types
1 parent 3f7fc7d commit a43bb39

File tree

1 file changed

+44
-2
lines changed

1 file changed

+44
-2
lines changed

.github/workflows/release.yaml

Lines changed: 44 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,53 @@ jobs:
1414
uses: actions/checkout@v4
1515

1616
- name: Setup release please
17-
uses: googleapis/release-please-action@v4
17+
uses: googleapis/release-please-action@v3
1818
id: release
1919
with:
2020
release-type: node
21-
21+
changelog-types: |
22+
[
23+
{
24+
"type": "feat",
25+
"section": "Features",
26+
"hidden": false
27+
},
28+
{
29+
"type": "fix",
30+
"section": "Bug Fixes",
31+
"hidden": false
32+
},
33+
{
34+
"type": "chore",
35+
"section": "Miscellaneous",
36+
"hidden": false
37+
},
38+
{
39+
"type": "ci",
40+
"section": "Continuous Integration",
41+
"hidden": false
42+
},
43+
{
44+
"type": "docs",
45+
"section": "Documentation",
46+
"hidden": false
47+
},
48+
{
49+
"type": "refactor",
50+
"section": "Refactoring",
51+
"hidden": false
52+
},
53+
{
54+
"type": "perf",
55+
"section": "Performance",
56+
"hidden": false
57+
},
58+
{
59+
"type": "test",
60+
"section": "Tests",
61+
"hidden": false
62+
}
63+
]
2264
- name: Login into GitHub Container Registry
2365
if: ${{ steps.release.outputs.release_created }}
2466
run: echo ${{ secrets.GITHUB_TOKEN }} | docker login ghcr.io -u $GITHUB_ACTOR --password-stdin

0 commit comments

Comments
 (0)