-
-
Notifications
You must be signed in to change notification settings - Fork 32
33 lines (28 loc) · 1003 Bytes
/
release-please.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: release-please
on:
push:
branches:
- master
jobs:
release_please:
runs-on: ubuntu-latest
outputs:
release_created: ${{ steps.release.outputs.release_created }}
steps:
- uses: google-github-actions/release-please-action@v3.7.13
id: release
with:
changelog-types: |
[
{"type":"build","section":"Build System","hidden":false},
{"type":"chore","section":"Miscellaneous","hidden":false},
{"type":"feat","section":"Features","hidden":false},
{"type":"fix","section":"Bug Fixes","hidden":false},
{"type":"perf","section":"Performance Improvements","hidden":false},
{"type":"refactor","section":"Refactoring","hidden":false},
{"type":"revert","section":"Reverts","hidden":false}
]
release-type: simple
extra-files: |
gradle.properties
token: ${{ secrets.WORKFLOW_TOKEN }}