Skip to content

ci(action): update actions/checkout digest to 0ad4b8f (#924) #389

ci(action): update actions/checkout digest to 0ad4b8f (#924)

ci(action): update actions/checkout digest to 0ad4b8f (#924) #389

Workflow file for this run

"on":
push:
branches:
- main
name: Lint repository contents
jobs:
lint_repo:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4
with:
token: ${{ secrets.OCTOKITBOT_PAT }}
- uses: actions/setup-node@v4
with:
node-version: 18
cache: npm
- run: npm ci
- run: echo "./node_modules/.bin" >> $GITHUB_PATH
- run: ./bin/format-with-prettier.mts
- run: git diff-index --quiet HEAD
- if: failure()
run: |
git config user.email "33075676+octokitbot@users.noreply.github.com"
git config user.name "Octokit Bot"
git add .
git commit -m "style: lint JSON files" && git push || true