|
| 1 | +name: release-please |
| 2 | + |
| 3 | +on: |
| 4 | + push: |
| 5 | + branches: |
| 6 | + - master |
| 7 | + |
| 8 | +jobs: |
| 9 | + release-please: |
| 10 | + runs-on: ubuntu-latest |
| 11 | + steps: |
| 12 | + - uses: google-github-actions/release-please-action@v2 |
| 13 | + id: release |
| 14 | + with: |
| 15 | + package-name: node-gyp |
| 16 | + release-type: node |
| 17 | + changelog-types: > |
| 18 | + [{"type":"feat","section":"Features","hidden":false}, |
| 19 | + {"type":"fix","section":"Bug Fixes","hidden":false}, |
| 20 | + {"type":"bin","section":"Core","hidden":false}, |
| 21 | + {"type":"gyp","section":"Core","hidden":false}, |
| 22 | + {"type":"lib","section":"Core","hidden":false}, |
| 23 | + {"type":"src","section":"Core","hidden":false}, |
| 24 | + {"type":"test","section":"Tests","hidden":false}, |
| 25 | + {"type":"build","section":"Core","hidden":false}, |
| 26 | + {"type":"clean","section":"Core","hidden":false}, |
| 27 | + {"type":"configure","section":"Core","hidden":false}, |
| 28 | + {"type":"install","section":"Core","hidden":false}, |
| 29 | + {"type":"list","section":"Core","hidden":false}, |
| 30 | + {"type":"rebuild","section":"Core","hidden":false}, |
| 31 | + {"type":"remove","section":"Core","hidden":false}, |
| 32 | + {"type":"deps","section":"Core","hidden":false}, |
| 33 | + {"type":"python","section":"Core","hidden":false}, |
| 34 | + {"type":"lin","section":"Core","hidden":false}, |
| 35 | + {"type":"linux","section":"Core","hidden":false}, |
| 36 | + {"type":"mac","section":"Core","hidden":false}, |
| 37 | + {"type":"macos","section":"Core","hidden":false}, |
| 38 | + {"type":"win","section":"Core","hidden":false}, |
| 39 | + {"type":"windows","section":"Core","hidden":false}, |
| 40 | + {"type":"zos","section":"Core","hidden":false}, |
| 41 | + {"type":"doc","section":"Doc","hidden":false}, |
| 42 | + {"type":"docs","section":"Doc","hidden":false}, |
| 43 | + {"type":"readme","section":"Doc","hidden":false}, |
| 44 | + {"type":"chore","section":"Miscellaneous","hidden":false}, |
| 45 | + {"type":"refactor","section":"Miscellaneous","hidden":false}, |
| 46 | + {"type":"ci","section":"Miscellaneous","hidden":false}, |
| 47 | + {"type":"meta","section":"Miscellaneous","hidden":false}] |
| 48 | +
|
| 49 | + # Standard Conventional Commits: `feat` and `fix` |
| 50 | + # node-gyp subdirectories: `bin`, `gyp`, `lib`, `src`, `test` |
| 51 | + # node-gyp subcommands: `build`, `clean`, `configure`, `install`, `list`, `rebuild`, `remove` |
| 52 | + # Core abstract category: `deps` |
| 53 | + # Languages/platforms: `python`, `lin`, `linux`, `mac`, `macos`, `win`, `window`, `zos` |
| 54 | + # Documentation: `doc`, `docs`, `readme` |
| 55 | + # Standard Conventional Commits: `chore` (under "Miscellaneous") |
| 56 | + # Miscellaneous abstract categories: `refactor`, `ci`, `meta` |
0 commit comments