Update Gradle Wrapper from 8.10.2 to 8.11 (#23) #16
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Rebase groovy-dsl branch | |
on: | |
push: | |
branches: | |
- kotlin-dsl | |
workflow_dispatch: | |
jobs: | |
rebase: | |
if: github.repository_owner == 'gradle' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
ref: groovy-dsl | |
fetch-depth: '0' | |
- name: Rebase | |
run: | | |
git config user.email "${GITHUB_ACTOR_ID}+${GITHUB_ACTOR}@users.noreply.github.com" | |
git config user.name "Github Actions" | |
git rebase origin/kotlin-dsl | |
git push --force-with-lease origin groovy-dsl |