11---
22
3+ # https://github.com/wayofdev/gh-actions/blob/master/.github/workflows/create-release.yml
34# https://github.com/google-github-actions/release-please-action#release-types-supported
45
56on : # yamllint disable-line rule:truthy
@@ -10,31 +11,13 @@ on: # yamllint disable-line rule:truthy
1011name : 📦 Create release
1112
1213jobs :
13- create-release :
14- runs-on : ubuntu-latest
15- steps :
16- - name : 🎉 Create release
17- uses : google-github-actions/release-please-action@v3
18- id : release
19- with :
20- token : ${{ secrets.PERSONAL_GITHUB_TOKEN }}
21- release-type : node
22- package-name : laravel-cycle-orm-adapter
23- default-branch : master
24- changelog-types : |
25- [
26- { "type": "feat", "section": "Features", "hidden": false },
27- { "type": "fix", "section": "Bug Fixes", "hidden": false },
28- { "type": "perf", "section": "Performance Improvements", "hidden": false },
29- { "type": "docs", "section": "Documentation", "hidden": false },
30- { "type": "chore", "section": "Miscellaneous", "hidden": false },
31- { "type": "style", "section": "Styles", "hidden": true },
32- { "type": "revert", "section": "Reverts", "hidden": true },
33- { "type": "deps", "section": "Dependencies", "hidden": true },
34- { "type": "refactor", "section": "Code Refactoring", "hidden": true },
35- { "type": "test", "section": "Tests", "hidden": true },
36- { "type": "build", "section": "Build System", "hidden": true },
37- { "type": "ci", "section": "Continuous Integration", "hidden": true }
38- ]
14+ 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-cycle-orm-adapter
20+ secrets :
21+ token : ${{ secrets.PERSONAL_GITHUB_TOKEN }}
3922
4023...
0 commit comments