-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (31 loc) · 1.08 KB
/
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
34
35
name: Release Please
on:
schedule:
- cron: '0 5 * * *'
workflow_dispatch:
push:
branches:
- master
env:
PRERELEASE: 'false'
permissions:
contents: write
pull-requests: write
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: google-github-actions/release-please-action@v3
id: release
with:
changelog-types: '[{"type":"feat","section":"Features","hidden":false},{"type":"fix","section":"Bug Fixes","hidden":false},{"type":"deprecation","section":"Deprecations","hidden":false},{"type":"revert","section":"Reverts","hidden":false}]'
release-type: 'node'
default-branch: '${{ github.ref_name }}'
package-name: '@skyux/icons'
pull-request-title-pattern: 'chore: release ${version}'
labels: 'autorelease ${{ github.ref_name }}: pending'
release-labels: 'autorelease ${{ github.ref_name }}: tagged'
prerelease: ${{ env.PRERELEASE == 'true' }}
draft-pull-request: true
include-v-in-tag: false
token: '${{ secrets.GH_PERSONAL_ACCESS_TOKEN }}'