From 6569534838aa160eb5374a8e27fdc53ba5003934 Mon Sep 17 00:00:00 2001 From: asciito Date: Sun, 8 Oct 2023 11:41:43 -0600 Subject: [PATCH] feat: add release-please.yml This workflow is in change of auto-release the package and update the CHANGELOG.md --- .github/workflows/release-please.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/release-please.yml diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml new file mode 100644 index 0000000..795721b --- /dev/null +++ b/.github/workflows/release-please.yml @@ -0,0 +1,18 @@ +name: Automatic Pre-release +on: + push: + branches: + - main + +permissions: + contents: write + pull-requests: write + +jobs: + release-please: + runs-on: ubuntu-latest + steps: + - uses: google-github-actions/release-please-action@v3 + with: + release-type: php + prerelease: true