Skip to content

Commit

Permalink
build: add ci
Browse files Browse the repository at this point in the history
  • Loading branch information
FlayaN committed Dec 18, 2024
1 parent cba3e76 commit 7191362
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/maintenance.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Scripted maintenance

on:
pull_request:
push:
branches:
- main

jobs:
maintenance:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}

- run: npx prettier --write package/**/*.json

- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: "style: 🎨 apply prettier changes"

0 comments on commit 7191362

Please sign in to comment.