From 8f22f4365a7a08d16a01cb3c497c0a39c803e290 Mon Sep 17 00:00:00 2001 From: Derrick Liu Date: Mon, 1 May 2023 23:40:36 -0700 Subject: [PATCH] ci(release-please): action to autocreate release PR on merge to main --- .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..2a74b9f0d --- /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: + command: manifest + token: {{ secrets.RELEASEPLS_GITHUB_PAT }} \ No newline at end of file