Skip to content

chore(deps): update actions/checkout action to v4.1.5 (#88) #210

chore(deps): update actions/checkout action to v4.1.5 (#88)

chore(deps): update actions/checkout action to v4.1.5 (#88) #210

Workflow file for this run

name: Prettier
on:
pull_request:
push:
branches:
- main
jobs:
prettier:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
with:
ref: ${{ github.head_ref }} # so PRs resolve to correct branch
fetch-depth: 0 # needed for only_changed below
persist-credentials: false
- name: Create GitHub App Token
id: app-token
uses: actions/create-github-app-token@a0de6af83968303c8c955486bf9739a57d23c7f1 # v1.10.0
with:
app-id: ${{ secrets.VERSION_CLI_UPDATER_APP_ID }}
private-key: ${{ secrets.VERSION_CLI_UPDATER_PRIVATE_KEY }}
- name: Prettify code
uses: creyD/prettier_action@31355f8eef017f8aeba2e0bc09d8502b13dbbad1 # v4.3
with:
commit_message: "Prettier"
only_changed: True
github_token: ${{ steps.app-token.outputs.token }}
prettier_options: --write . # the `.` targets all files which prettier _can_ parse, and ignores all others