File tree Expand file tree Collapse file tree 5 files changed +86
-26
lines changed Expand file tree Collapse file tree 5 files changed +86
-26
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "release-type" : " php" ,
3
+ "packages" : {
4
+ "." : {
5
+ "package-name" : " laravel-open-docs" ,
6
+ "changelog-path" : " /CHANGELOG.md"
7
+ }
8
+ },
9
+ "include-component-in-tag" : false ,
10
+ "changelog-sections" : [
11
+ {
12
+ "type" : " feat" ,
13
+ "section" : " Features" ,
14
+ "hidden" : false
15
+ },
16
+ {
17
+ "type" : " fix" ,
18
+ "section" : " Bug Fixes" ,
19
+ "hidden" : false
20
+ },
21
+ {
22
+ "type" : " perf" ,
23
+ "section" : " Performance Improvements" ,
24
+ "hidden" : false
25
+ },
26
+ {
27
+ "type" : " docs" ,
28
+ "section" : " Documentation" ,
29
+ "hidden" : false
30
+ },
31
+ {
32
+ "type" : " deps" ,
33
+ "section" : " Dependencies" ,
34
+ "hidden" : false
35
+ },
36
+ {
37
+ "type" : " refactor" ,
38
+ "section" : " Code Refactoring" ,
39
+ "hidden" : false
40
+ },
41
+ {
42
+ "type" : " test" ,
43
+ "section" : " Tests" ,
44
+ "hidden" : true
45
+ },
46
+ {
47
+ "type" : " build" ,
48
+ "section" : " Build System" ,
49
+ "hidden" : true
50
+ },
51
+ {
52
+ "type" : " ci" ,
53
+ "section" : " Continuous Integration" ,
54
+ "hidden" : true
55
+ },
56
+ {
57
+ "type" : " chore" ,
58
+ "section" : " Miscellaneous" ,
59
+ "hidden" : true
60
+ },
61
+ {
62
+ "type" : " style" ,
63
+ "section" : " Styles" ,
64
+ "hidden" : true
65
+ },
66
+ {
67
+ "type" : " revert" ,
68
+ "section" : " Reverts" ,
69
+ "hidden" : true
70
+ }
71
+ ]
72
+ }
Original file line number Diff line number Diff line change
1
+ {
2
+ "." : " 2.0.108"
3
+ }
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 2
2
3
3
# https://github.com/wayofdev/gh-actions/blob/master/.github/workflows/create-release.yml
4
4
# https://github.com/google-github-actions/release-please-action#release-types-supported
5
+ # https://github.com/googleapis/release-please/blob/main/docs/customizing.md
5
6
6
7
on : # yamllint disable-line rule:truthy
7
8
push :
@@ -12,12 +13,15 @@ name: 📦 Create release
12
13
13
14
jobs :
14
15
release :
15
- uses : wayofdev/gh-actions/.github/workflows/create-release.yml@master
16
- with :
17
- os : ubuntu-latest
18
- branch : master
19
- package-name : laravel-open-docs
20
- secrets :
21
- token : ${{ secrets.PERSONAL_GITHUB_TOKEN }}
16
+ runs-on : ubuntu-latest
17
+ steps :
18
+ - name : 🎉 Create release
19
+ uses : googleapis/release-please-action@v4.1.1
20
+ id : release
21
+ with :
22
+ token : ${{ secrets.PERSONAL_GITHUB_TOKEN }}
23
+ config-file : .github/.release-please-config.json
24
+ manifest-file : .github/.release-please-manifest.json
25
+ target-branch : master
22
26
23
27
...
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments