Run Prettier over Markdown and YAML files (#35)

## Summary

Partly personal preference, but mostly to align with other Astral
projects.
This commit is contained in:
Charlie Marsh 2024-09-04 17:14:10 -04:00 committed by GitHub
parent 6f825bd8e7
commit 0fa3b93f6e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
16 changed files with 192 additions and 173 deletions

View file

@ -12,15 +12,22 @@ jobs:
node-version: '20'
- name: Update default version and checksums
id: update-default-version
run: node dist/update-default-version/index.js src/download/checksum/known-checksums.ts action.yml ${{ secrets.GITHUB_TOKEN }}
run:
node dist/update-default-version/index.js
src/download/checksum/known-checksums.ts action.yml ${{
secrets.GITHUB_TOKEN }}
- run: npm install && npm run all
- name: Create Pull Request
uses: peter-evans/create-pull-request@4320041ed380b20e97d388d56a7fb4f9b8c20e79 # v7.0.0
uses: peter-evans/create-pull-request@4320041ed380b20e97d388d56a7fb4f9b8c20e79 # v7.0.0
with:
commit-message: "chore: update checksums"
title: "chore: update default version to ${{ steps.update-default-version.outputs.latest-version }}"
body: "chore: update default version to ${{ steps.update-default-version.outputs.latest-version }}"
base: main
labels: "automated-pr,default-version-update"
branch: update-default-version-pr
delete-branch: true
commit-message: 'chore: update checksums'
title:
'chore: update default version to ${{
steps.update-default-version.outputs.latest-version }}'
body:
'chore: update default version to ${{
steps.update-default-version.outputs.latest-version }}'
base: main
labels: 'automated-pr,default-version-update'
branch: update-default-version-pr
delete-branch: true