Skip to content

Commit 7e08ecd

Browse files
committed
ci: add release-please workflow for automated releases
Configure release-please-action@v4 with php release-type and RELEASE_PLEASE_TOKEN secret to automate changelog generation, version bumps, and GitHub releases.
1 parent d711dfd commit 7e08ecd

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
on:
2+
push:
3+
branches:
4+
- main
5+
6+
permissions:
7+
contents: write
8+
issues: write
9+
pull-requests: write
10+
11+
name: release-please
12+
13+
jobs:
14+
release-please:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- uses: googleapis/release-please-action@v4
18+
with:
19+
token: ${{ secrets.RELEASE_PLEASE_TOKEN }}
20+
release-type: php

0 commit comments

Comments
 (0)