Skip to content

Fix

Fix #78

Workflow file for this run

name: Fix
on: workflow_dispatch
jobs:
yarn:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
with:
token: ${{ secrets.MACHINE_USER_TOKEN }}
- name: Warm up repo
uses: ./.github/actions/warm-up-repo
- name: Fix
run: yarn fix
- name: Commit
run: |
git config user.name HASH
git config user.email [email protected]
git add .
git commit -m '`yarn fix`'
git push
env:
GITHUB_TOKEN: ${{ secrets.MACHINE_USER_TOKEN }}