Skip to content

Commit

Permalink
Add compliance action
Browse files Browse the repository at this point in the history
Check if the commits of a pull request can be cherry-picked to
the master, which is the kiwi v9.x.x code stream.
  • Loading branch information
schaefi committed Jan 9, 2024
1 parent a96b106 commit 69f0d5d
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/ci-kiwi-9-compliant.yml
Original file line number Diff line number Diff line change
@@ -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: sudo apt upgrade; git --version; 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}'

0 comments on commit 69f0d5d

Please sign in to comment.