This repository has been archived by the owner on Jan 18, 2025. It is now read-only.
Update Lean #28
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
name: Update Lean | |
on: | |
schedule: | |
- cron: "0 11 * * 4" | |
workflow_dispatch: | |
jobs: | |
update_lean: | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
pull-requests: write | |
contents: write | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Update Lean project | |
uses: oliver-butterley/lean-update-action@v1-alpha | |
with: | |
# Allowed values: "silent", "commit", "issue" or "pr". Default: "commit". | |
on_update_succeeds: pr | |
# Allowed values: "silent", "issue" or "fail". Default: "issue". | |
on_update_fails: issue |