From e31492ff70db2e06014c906b04327bd65f71ce08 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcus=20Sch=C3=A4fer?= Date: Tue, 9 Jan 2024 13:19:57 +0100 Subject: [PATCH] Add compliance action Check if the commits of a pull request can be cherry-picked to the master, which is the kiwi v9.x.x code stream. --- .github/workflows/ci-kiwi-9-compliant.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/ci-kiwi-9-compliant.yml diff --git a/.github/workflows/ci-kiwi-9-compliant.yml b/.github/workflows/ci-kiwi-9-compliant.yml new file mode 100644 index 00000000000..2ce3c628a3c --- /dev/null +++ b/.github/workflows/ci-kiwi-9-compliant.yml @@ -0,0 +1,14 @@ +name: CI-Compliant-To-Kiwi-9 +on: + pull_request: + branches: [main] + +jobs: + compliance_test: + name: Capable for Rebase to kiwi v9.x.x + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: Run rebase + run: git fetch --all; git config user.email rebase@action.com; git config user.name git_action; git checkout master; git cherry-pick "main..${GITHUB_HEAD_REF}"