Skip to content

Commit

Permalink
Add workflow for keeping pre-commit hooks updated
Browse files Browse the repository at this point in the history
  • Loading branch information
LilSpazJoekp committed Aug 22, 2021
1 parent bd7be47 commit 7a7f415
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/pre-commit_autoupdate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
jobs:
auto-update:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: browniebroke/pre-commit-autoupdate-action@main
- uses: peter-evans/create-pull-request@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
branch: update/pre-commit-hooks
title: Update pre-commit hooks
commit-message: "Update pre-commit hooks"
body: Update versions of pre-commit hooks to the latest version.
name: 'Update pre-commit hooks'
on:
schedule:
- cron: '0 15 * * 1'
workflow_dispatch:

0 comments on commit 7a7f415

Please sign in to comment.