Skip to content

Commit

Permalink
Run Github Actions workflow weekly
Browse files Browse the repository at this point in the history
Previously, the workflow would run on every push to the repository or
via manual triggering.

With this change, the workflow will also run every Sunday at 8:00 UTC,
which will ensure that the specific AGP used in the recipes are kept up
to date.

Bug: NA
Test: existing
Change-Id: I488581efd82876099acd1ad0ccecf94431eadc30
  • Loading branch information
scott-pollom committed Feb 1, 2024
1 parent a1b61a1 commit 897658f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/convert-recipes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ name: Convert recipes flow
on:
push:
workflow_dispatch:
schedule:
- cron: '0 8 * * 0' # Run every Sunday at 8:00 UTC

jobs:
build-gradle-project:
Expand Down

0 comments on commit 897658f

Please sign in to comment.