Skip to content

Commit

Permalink
Auto-update gradle wrapper (#127)
Browse files Browse the repository at this point in the history
  • Loading branch information
trask committed May 23, 2023
1 parent 3ce3ff3 commit 76bb91f
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/update-gradle-wrappers-daily.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Update gradle wrappers (daily)

on:
schedule:
# daily at 1:30 UTC
- cron: "30 1 * * *"
workflow_dispatch:

jobs:
update-gradle-wrapper:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Update Gradle Wrapper
uses: gradle-update/update-gradle-wrapper-action@v1

workflow-notification:
needs:
- update-gradle-wrapper
if: always()
uses: ./.github/workflows/reusable-workflow-notification.yml
with:
success: ${{ needs.update-gradle-wrapper.result == 'success' }}

0 comments on commit 76bb91f

Please sign in to comment.