Skip to content

Commit

Permalink
Auto rebase groovy-dsl on top of kotlin-dsl
Browse files Browse the repository at this point in the history
  • Loading branch information
ov7a committed Jun 18, 2024
1 parent aa07bfc commit 8d5c989
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/auto-rebase.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Rebase groovy-dsl branch automatically
on:
push:
branches:
- kotlin-dsl
workflow_dispatch:

jobs:
rebase:
if: github.repository_owner == 'gradle'
steps:
- name: checkout
uses: actions/checkout@v4
with:
ref: groovy-dsl

- name: rebase
id: rebase
run: git rebase origin/kotlin-dsl

- name: Push changes
if: ${{ steps.rebase.outputs.result == 'success' }}
run: git push origin groovy-dsl

0 comments on commit 8d5c989

Please sign in to comment.