Skip to content

ci(action): update actions/add-to-project action to v0.6.1 (#910) #378

ci(action): update actions/add-to-project action to v0.6.1 (#910)

ci(action): update actions/add-to-project action to v0.6.1 (#910) #378

Workflow file for this run

"on":
push:
branches:
- main
name: Lint repository contents
jobs:
lint_repo:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # 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