We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c10108b commit a41158fCopy full SHA for a41158f
.github/workflows/update-gradle-wrappers-daily.yml
@@ -0,0 +1,25 @@
1
+name: Update gradle wrappers (daily)
2
+
3
+on:
4
+ schedule:
5
+ # daily at 1:30 UTC
6
+ - cron: "30 1 * * *"
7
+ workflow_dispatch:
8
9
+jobs:
10
+ update-gradle-wrapper:
11
+ runs-on: ubuntu-latest
12
13
+ steps:
14
+ - uses: actions/checkout@v3
15
16
+ - name: Update Gradle Wrapper
17
+ uses: gradle-update/update-gradle-wrapper-action@v1
18
19
+ workflow-notification:
20
+ needs:
21
+ - update-gradle-wrapper
22
+ if: always()
23
+ uses: ./.github/workflows/reusable-workflow-notification.yml
24
+ with:
25
+ success: ${{ needs.analyze.result == 'success' }}
0 commit comments