We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7d3649c commit 9443aafCopy full SHA for 9443aaf
.github/workflows/php-package.yml
@@ -2,6 +2,7 @@ name: PHP Package
2
on:
3
push:
4
pull_request:
5
+ workflow_call:
6
jobs:
7
format-check:
8
name: Check PSR12 Standarts
.github/workflows/release-please.yml
@@ -0,0 +1,21 @@
1
+on:
+ push:
+ branches:
+ - main
+
+permissions:
+ contents: write
+ pull-requests: write
9
10
+name: Create Release
11
12
+jobs:
13
+ verify-release:
14
+ uses: ./.github/workflows/php-package.yml
15
+ release-please:
16
+ needs: verify-release
17
+ runs-on: ubuntu-24.04
18
+ steps:
19
+ - uses: googleapis/release-please-action@v4
20
+ with:
21
+ release-type: php
0 commit comments