Auto Update #23
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: Auto Update | |
on: | |
schedule: | |
- cron: '10 10 15 * *' | |
jobs: | |
precommit-update: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10.x" | |
- name: Run update | |
run: | | |
pip install pre-commit | |
pre-commit autoupdate | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v4 | |
with: | |
author: GitHub <[email protected]> | |
add-paths: .pre-commit-config.yaml | |
commit-message: Auto pre-commit update | |
body: | | |
Update pre-commit hooks to latest | |
Auto generated | |
branch: auto-update/precommit_update | |
delete-branch: true | |
title: Auto precommit update | |
labels: automated-pr | |
assignees: egecetin |