Skip to content

Commit

Permalink
chore: 🤖 Add a workflow to update pre-commit config
Browse files Browse the repository at this point in the history
Add a workflow that runs pre-commit autoupdate and create a PR with the
result. Both the package and the template will be updated.

✅ Closes: #91
  • Loading branch information
abelsiqueira committed May 30, 2024
1 parent a93a148 commit aec2df6
Show file tree
Hide file tree
Showing 2 changed files with 66 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/PreCommitUpdate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: pre-commit Update

on:
schedule:
- cron: "0 7 1/7 * *" # At 7:00 every 7 days
workflow_dispatch:

jobs:
Copier:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
cache: pip
- name: Install pre-commit
run: pip install pre-commit
- name: Run pre-commit's autoupdate
run: pre-commit autoupdate
- name: Create Pull Request
id: cpr
uses: peter-evans/create-pull-request@v6
with:
commit-message: "chore: :robot: pre-commit update"
title: "[AUTO] pre-commit update"
branch: auto-pre-commit-update
delete-branch: true
labels: chore
- name: Check outputs
run: |
echo "Pull Request Number - ${{ steps.cpr.outputs.pull-request-number }}"
echo "Pull Request URL - ${{ steps.cpr.outputs.pull-request-url }}"
33 changes: 33 additions & 0 deletions template/.github/workflows/PreCommitUpdate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: pre-commit Update

on:
schedule:
- cron: "0 7 1/7 * *" # At 7:00 every 7 days
workflow_dispatch:

jobs:
Copier:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
cache: pip
- name: Install pre-commit
run: pip install pre-commit
- name: Run pre-commit's autoupdate
run: pre-commit autoupdate
- name: Create Pull Request
id: cpr
uses: peter-evans/create-pull-request@v6
with:
commit-message: "chore: :robot: pre-commit update"
title: "[AUTO] pre-commit update"
branch: auto-pre-commit-update
delete-branch: true
labels: chore
- name: Check outputs
run: |
echo "Pull Request Number - ${{ steps.cpr.outputs.pull-request-number }}"
echo "Pull Request URL - ${{ steps.cpr.outputs.pull-request-url }}"

0 comments on commit aec2df6

Please sign in to comment.