Skip to content

Commit

Permalink
Add wrapperbot and update workflow order (#3051)
Browse files Browse the repository at this point in the history
  • Loading branch information
juherr committed Feb 3, 2024
1 parent f5a46d5 commit 4af6e94
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 2 deletions.
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/combine-prs@v5.0.0
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

0 comments on commit 4af6e94

Please sign in to comment.