Skip to content

Commit 0035d8e

Browse files
ayushmanchhabraDeeDeeGlukekarrys
authored
chore: upgrade release please action from v2 to v4 (#2982)
* chore(release-please-action): upgrade from v2 to v4 * chore(ci): remove target branch * chore(release-please): disable `include-component-in-tag` Co-authored-by: DeeDeeG <DeeDeeG@users.noreply.github.com> * chore(release-please): format JSON properties per line Co-authored-by: DeeDeeG <DeeDeeG@users.noreply.github.com> * Remove last release sha --------- Co-authored-by: DeeDeeG <DeeDeeG@users.noreply.github.com> Co-authored-by: Luke Karrys <luke@lukekarrys.com>
1 parent 391cc5b commit 0035d8e

File tree

3 files changed

+44
-35
lines changed

3 files changed

+44
-35
lines changed

.github/workflows/release-please.yml

+1-35
Original file line numberDiff line numberDiff line change
@@ -16,42 +16,8 @@ jobs:
1616
if: github.event_name == 'push'
1717
runs-on: ubuntu-latest
1818
steps:
19-
- uses: google-github-actions/release-please-action@v2
19+
- uses: google-github-actions/release-please-action@v4
2020
id: release
21-
with:
22-
package-name: node-gyp
23-
release-type: node
24-
changelog-types: >
25-
[{"type":"feat","section":"Features","hidden":false},
26-
{"type":"fix","section":"Bug Fixes","hidden":false},
27-
{"type":"bin","section":"Core","hidden":false},
28-
{"type":"gyp","section":"Core","hidden":false},
29-
{"type":"lib","section":"Core","hidden":false},
30-
{"type":"src","section":"Core","hidden":false},
31-
{"type":"test","section":"Tests","hidden":false},
32-
{"type":"build","section":"Core","hidden":false},
33-
{"type":"clean","section":"Core","hidden":false},
34-
{"type":"configure","section":"Core","hidden":false},
35-
{"type":"install","section":"Core","hidden":false},
36-
{"type":"list","section":"Core","hidden":false},
37-
{"type":"rebuild","section":"Core","hidden":false},
38-
{"type":"remove","section":"Core","hidden":false},
39-
{"type":"deps","section":"Core","hidden":false},
40-
{"type":"python","section":"Core","hidden":false},
41-
{"type":"lin","section":"Core","hidden":false},
42-
{"type":"linux","section":"Core","hidden":false},
43-
{"type":"mac","section":"Core","hidden":false},
44-
{"type":"macos","section":"Core","hidden":false},
45-
{"type":"win","section":"Core","hidden":false},
46-
{"type":"windows","section":"Core","hidden":false},
47-
{"type":"zos","section":"Core","hidden":false},
48-
{"type":"doc","section":"Doc","hidden":false},
49-
{"type":"docs","section":"Doc","hidden":false},
50-
{"type":"readme","section":"Doc","hidden":false},
51-
{"type":"chore","section":"Miscellaneous","hidden":false},
52-
{"type":"refactor","section":"Miscellaneous","hidden":false},
53-
{"type":"ci","section":"Miscellaneous","hidden":false},
54-
{"type":"meta","section":"Miscellaneous","hidden":false}]
5521
# Standard Conventional Commits: `feat` and `fix`
5622
# node-gyp subdirectories: `bin`, `gyp`, `lib`, `src`, `test`
5723
# node-gyp subcommands: `build`, `clean`, `configure`, `install`, `list`, `rebuild`, `remove`

.release-please-manifest.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
".": "10.0.1"
3+
}

release-please-config.json

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
{
2+
"packages": {
3+
".": {
4+
"include-component-in-tag": false,
5+
"release-type": "node",
6+
"changelog-sections": [
7+
{ "type": "feat", "section": "Features", "hidden": false },
8+
{ "type": "fix", "section": "Bug Fixes", "hidden": false },
9+
{ "type": "bin", "section": "Core", "hidden": false },
10+
{ "type": "gyp", "section": "Core", "hidden": false },
11+
{ "type": "lib", "section": "Core", "hidden": false },
12+
{ "type": "src", "section": "Core", "hidden": false },
13+
{ "type": "test", "section": "Tests", "hidden": false },
14+
{ "type": "build", "section": "Core", "hidden": false },
15+
{ "type": "clean", "section": "Core", "hidden": false },
16+
{ "type": "configure", "section": "Core", "hidden": false },
17+
{ "type": "install", "section": "Core", "hidden": false },
18+
{ "type": "list", "section": "Core", "hidden": false },
19+
{ "type": "rebuild", "section": "Core", "hidden": false },
20+
{ "type": "remove", "section": "Core", "hidden": false },
21+
{ "type": "deps", "section": "Core", "hidden": false },
22+
{ "type": "python", "section": "Core", "hidden": false },
23+
{ "type": "lin", "section": "Core", "hidden": false },
24+
{ "type": "linux", "section": "Core", "hidden": false },
25+
{ "type": "mac", "section": "Core", "hidden": false },
26+
{ "type": "macos", "section": "Core", "hidden": false },
27+
{ "type": "win", "section": "Core", "hidden": false },
28+
{ "type": "windows", "section": "Core", "hidden": false },
29+
{ "type": "zos", "section": "Core", "hidden": false },
30+
{ "type": "doc", "section": "Doc", "hidden": false },
31+
{ "type": "docs", "section": "Doc", "hidden": false },
32+
{ "type": "readme", "section": "Doc", "hidden": false },
33+
{ "type": "chore", "section": "Miscellaneous", "hidden": false },
34+
{ "type": "refactor", "section": "Miscellaneous", "hidden": false },
35+
{ "type": "ci", "section": "Miscellaneous", "hidden": false },
36+
{ "type": "meta", "section": "Miscellaneous", "hidden": false }
37+
]
38+
}
39+
}
40+
}

0 commit comments

Comments
 (0)