Skip to content

Commit

Permalink
Add compliance action
Browse files Browse the repository at this point in the history
Check if a rebase to kiwi-10 is possible per pull request
  • Loading branch information
schaefi committed Jan 9, 2024
1 parent 9ac01da commit 4ef5cb1
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/ci-compliant-to-kiwi10.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: CI-Compliant-To-Kiwi-10
on:
pull_request:
branches: [master]

jobs:
compliance_test:
name: Capable for Rebase to kiwi-10
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Run rebase
run: git fetch --all; git config user.email [email protected]; git config user.name git_action; git rebase origin/kiwi-10

0 comments on commit 4ef5cb1

Please sign in to comment.