Skip to content

Fix

Fix #79

Workflow file for this run

name: Fix
on: workflow_dispatch
jobs:
yarn:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
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 }}