From 5372672c6fed0d38cd615155f597355e584fa116 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Andr=C3=A9=20Svendsen?= <47424077+dansvend@users.noreply.github.com> Date: Fri, 30 Jun 2023 08:40:10 +0200 Subject: [PATCH] chore: Add Release Please (#569) Release Please automates CHANGELOG generation, the creation of GitHub releases, and version bumps. Closes #431 --- .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 00000000..6fb081e0 --- /dev/null +++ b/.github/workflows/release-please.yml @@ -0,0 +1,19 @@ +on: + push: + branches: + - main + +permissions: + contents: write + pull-requests: write + +name: release-please + +jobs: + release-please: + runs-on: ubuntu-latest + steps: + - uses: google-github-actions/release-please-action@v3 + with: + release-type: node + package-name: release-please-action \ No newline at end of file