-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #138 from pitmonticone/add-update-workflow
Add update workflow
- Loading branch information
Showing
1 changed file
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: Update Dependencies | ||
|
||
on: | ||
schedule: # Sets a schedule to trigger the workflow | ||
- cron: "0 8 */3 * *" # Every 3 days at 08:00 AM UTC (for more info on the cron syntax see https://docs.github.com/en/actions/writing-workflows/choosing-when-your-workflow-runs/events-that-trigger-workflows#schedule) | ||
workflow_dispatch: # Allows the workflow to be triggered manually via the GitHub interface | ||
|
||
jobs: | ||
update_lean: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write # Grants permission to push changes to the repository | ||
issues: write # Grants permission to create or update issues | ||
pull-requests: write # Grants permission to create or update pull requests | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
- name: Update project | ||
uses: oliver-butterley/lean-update@v1-alpha | ||
with: | ||
on_update_succeeds: pr # Create a pull request if the update succeeds | ||
on_update_fails: issue # Create an issue if the update fails |