Run Pre-Commit Update Workflow #15
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: Run Pre-Commit Update Workflow | |
# Update pre-commit config and create a pull request if changes are detected | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 0 1 * *" # Run every month at midnight on the first day of the month | |
jobs: | |
call_reusable_workflow: | |
uses: vortexntnu/vortex-ci/.github/workflows/reusable-update-pre-commit.yaml@main | |
with: | |
ref: ${{ github.ref }} | |
python_version: '3.10' | |
responsible: 'kluge7' |