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