Skip to content

Pre-commit autoupdate #41

Pre-commit autoupdate

Pre-commit autoupdate #41

name: "Pre-commit autoupdate"
on:
schedule:
- cron: '0 6 1 * *'
workflow_dispatch:
jobs:
autoupdate:
name: autoupdate
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
with:
ref: develop
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install system deps
shell: bash
run: |
pip install poetry
pip install poetry-plugin-export
poetry config virtualenvs.in-project true
poetry install --no-root --only dev --sync
- name: Install galaxy deps
shell: bash
run: |
poetry run ansible-galaxy install -r requirements.yml
- name: Run autoupdate
run: poetry run pre-commit autoupdate
- name: Run pre-commit
run: poetry run pre-commit run --all-files
- uses: peter-evans/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
branch: chore-update-pre-commit-hooks
title: Update pre-commit hooks
commit-message: "Update pre-commit hooks"
body: |
# Update pre-commit hooks
- Update pre-commit hooks to the latest version.
delete-branch: true
labels: |
dependencies
python