Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,5 @@ updates:
directory: "/"
schedule:
interval: "daily"

# Check for updates at 00:00 UTC
time: "00:00"
4 changes: 3 additions & 1 deletion .github/workflows/combine-prs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Combine PRs

on:
schedule:
- cron: '0 0 * * *' # Every day at 00:00 UTC
- cron: '0 2 * * *' # Every day at 02:00 UTC
workflow_dispatch: # allows you to manually trigger the workflow

# The minimum permissions required to run this Action
Expand All @@ -18,3 +18,5 @@ jobs:
- name: combine-prs
id: combine-prs
uses: github/[email protected]
with:
branch_regex: ^(dependa|wrapper)bot\/.*$
15 changes: 15 additions & 0 deletions .github/workflows/update-gradle-wrapper.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Update Gradle Wrapper

on:
schedule:
- cron: '0 0 * * *' # Every day at 00:00 UTC

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