From 5ee6ce6cabe075c17e9e9195606f887c88798d87 Mon Sep 17 00:00:00 2001 From: Alexey Zimarev Date: Mon, 16 Jun 2025 18:05:15 +0200 Subject: [PATCH] Add cherry-picking automation --- .github/workflows/cherry-pick-pr-for-label.yml | 14 ++++++++++++++ README.md | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/cherry-pick-pr-for-label.yml diff --git a/.github/workflows/cherry-pick-pr-for-label.yml b/.github/workflows/cherry-pick-pr-for-label.yml new file mode 100644 index 00000000..f7fa3d2b --- /dev/null +++ b/.github/workflows/cherry-pick-pr-for-label.yml @@ -0,0 +1,14 @@ +name: Cherry pick PR commits for label +on: + pull_request_target: + types: [closed] +jobs: + cherry_pick_pr_for_label: + name: Cherry pick PR commits for label + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Cherry Pick PR for label + uses: kurrent-io/Automations/cherry-pick-pr-for-label@master + with: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/README.md b/README.md index 532f61e6..c01c3009 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ distributed messaging challenges and ensures data consistency. This monorepo contains the following packages: | Subfolder | Package | -| ---------------------------------------------------- | -------------------------------------------------------------------------------------- | +|------------------------------------------------------|----------------------------------------------------------------------------------------| | [`packages/db-client/`](packages/db-client/) | [`@kurrent/kurrentdb-client`](https://www.npmjs.com/package/@kurrent/kurrentdb-client) | | [`packages/opentelemetry/`](packages/opentelemetry/) | [`@kurrent/opentelemetry`](https://www.npmjs.com/package/@kurrent/opentelemetry) | | [`packages/test/`](packages/test/) | Internal tests |