Skip to content

Commit

Permalink
fix(ci): Fix dependency lock update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
PerfectSlayer committed Jul 12, 2024
1 parent f0eec59 commit a06470d
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/update-gradle-dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@ name: Update Gradle dependencies
on:
schedule:
- cron: '0 4 * * 0'
push:
branches:
- bbujon/fix-dependency-locking
paths:
- '.github/workflows/update-gradle-dependencies.yaml'
workflow_dispatch:

jobs:
Expand Down Expand Up @@ -33,7 +38,7 @@ jobs:
run: |
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
git add **/gradle.lockfile
git add "**/gradle.lockfile"
git commit -m "chore: Update Gradle dependencies"
git push -u origin $BRANCH_NAME
gh pr create --title "Update Gradle dependencies" \
Expand Down

0 comments on commit a06470d

Please sign in to comment.