From a9e78b4fe479190264f8ab70f88ada957ad2f954 Mon Sep 17 00:00:00 2001 From: Thomas Bernard Date: Wed, 17 Jul 2024 16:49:14 +0200 Subject: [PATCH] ci: :construction_worker: add release please action --- .github/workflows/release-please.yml | 19 +++++++++++++++++++ 1 file changed, 19 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 000000000..2fa885763 --- /dev/null +++ b/.github/workflows/release-please.yml @@ -0,0 +1,19 @@ +on: + push: + # branches: + # - * + +permissions: + contents: write + pull-requests: write + +name: release-please + +jobs: + release-please: + runs-on: ubuntu-latest + steps: + - uses: googleapis/release-please-action@v4 + with: + # token: ${{ secrets.RELEASE_PLEASE_TOKEN }} + release-type: simple \ No newline at end of file