Fix #69
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Fix | |
on: workflow_dispatch | |
jobs: | |
yarn: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
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 }} |