From aae6be7cbd7fc21110c42ac42001c6ed057700f9 Mon Sep 17 00:00:00 2001 From: florianow <64468897+florianow@users.noreply.github.com> Date: Thu, 4 Apr 2024 14:51:37 +0200 Subject: [PATCH] chore: adding pr pipleline for open a pr --- .github/workflows/pull-request.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/pull-request.yml diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml new file mode 100644 index 00000000..eb3f1a47 --- /dev/null +++ b/.github/workflows/pull-request.yml @@ -0,0 +1,23 @@ +name: auto pull request +on: + push: + branches: [ "feature/auto-backporting" ] + +jobs: + pull_request: + runs-on: ubuntu-latest + steps: + - name: Create Pull Request in collie-hub repo + uses: peter-evans/create-pull-request@v6 + with: + commit-message: "feature: update azure kits from latest prod build" + committer: GitHub Actions + signoff: false + branch: feature/auto-backporting + base: main + delete-branch: true + title: "[latest likvid kits] update latest kits from likvid-cloudfoundation" + body: | + The latest kits from likvid-cloudfoundation builds on the prod branch. + - This PR is updated automatically with changes, until merged + draft: true