Skip to content

feat: add logo asset #85

feat: add logo asset

feat: add logo asset #85

Workflow file for this run

name: autofix.ci # needed to securely identify the workflow
on:
pull_request:
push:
branches: ["main"]
permissions:
contents: read
jobs:
autofix:
runs-on: ubuntu-latest
if: |
github.event_name == 'pull_request' ||
(github.event_name == 'push' && github.event.sender.type != 'Bot' && github.event.head_commit != null)
steps:
- uses: actions/checkout@v6
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install dependencies
run: bun install
- name: Fix linting issues
run: bun run fix
- uses: autofix-ci/action@635ffb0c9798bd160680f18fd73371e355b85f27