- Switch all 13 workflow branch triggers from master to main - Replace quay.io/minio/minio with ghcr.io/hanzoai/s3 in all compose/workflow files - Rebrand issue templates (MinIO → Hanzo, min.io → hanzo.ai) - Update LDAP test config (MinIO Inc → Hanzo Inc, min.io → hanzo.ai) - Add QEMU setup and concurrency group to publish workflow - Fix dl.hanzo.space worker custom domain routing
23 lines
441 B
YAML
23 lines
441 B
YAML
name: Shell formatting checks
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
build:
|
|
name: runner / shfmt
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: luizm/action-sh-checker@master
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
SHFMT_OPTS: "-s"
|
|
with:
|
|
sh_checker_shellcheck_disable: true # disable for now
|