Gradle Libraries Update #1010
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: Gradle Libraries Update | |
on: | |
schedule: | |
- cron: "0 15 * * *" | |
workflow_dispatch: | |
jobs: | |
create-update-branch: | |
name: "Create Update Branch" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: '25' | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@v3 | |
with: | |
cache-read-only: true | |
- name: Update Deps | |
run: ./gradlew versionCatalogUpdate --no-configuration-cache | |
- name: Update Yarn Lock | |
run: ./gradlew kotlinUpgradeYarnLock --no-configuration-cache | |
- name: Create Pull Request | |
id: cpr | |
uses: peter-evans/create-pull-request@v6 | |
with: | |
branch: "create-pull-request/${{github.job}}/${{github.run_id}}" | |
commit-message: "[patch] libraries ${{github.workflow}}" | |
token: ${{ secrets.TESTMINTS_PAT }} | |
delete-branch: true | |
- name: Enable Pull Request Automerge | |
if: steps.cpr.outputs.pull-request-operation == 'created' | |
run: gh pr merge --rebase --auto "${{ steps.cpr.outputs.pull-request-number }}" | |
env: | |
GH_TOKEN: ${{ secrets.TESTMINTS_PAT }} |