From 0fa2741c0521e52f7507d933fe1ace105b255c9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20V=C3=A9tillard?= <84911237+clementvtrd@users.noreply.github.com> Date: Wed, 15 Jul 2026 17:44:45 +0200 Subject: [PATCH] feat: add GitHub Actions workflow for automated PHP releases --- .github/workflows/release.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..e3109a7 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,19 @@ +name: Release + +on: + push: + branches: + - main + +permissions: + contents: write + issues: write + pull-requests: write + +jobs: + release-please: + runs-on: ubuntu-latest + steps: + - uses: GoogleCloudPlatform/release-please-action@v5 + with: + release-type: php