mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-02 09:41:37 +00:00
* fix(release): isolate extended-stable Docker aliases * fix(release): harden Docker channel promotion * docs(release): pin Docker policy into tagged tree * refactor(release): isolate Docker channel promotion * fix(release): queue Docker publications * fix(release): harden docker channel promotion * docs(release): tighten extended-stable guidance * fix(release): promote Docker aliases after verification * chore(release): format maintainer instructions * refactor(release): separate release version policy * docs(release): clarify extended-stable gateway scope * fix(release): harden Docker channel promotion
39 lines
1.4 KiB
YAML
39 lines
1.4 KiB
YAML
# actionlint configuration
|
|
# https://github.com/rhysd/actionlint/blob/main/docs/config.md
|
|
|
|
self-hosted-runner:
|
|
labels:
|
|
# Blacksmith CI runners
|
|
- blacksmith-4vcpu-ubuntu-2404
|
|
- blacksmith-8vcpu-ubuntu-2404
|
|
- blacksmith-8vcpu-windows-2025
|
|
- blacksmith-16vcpu-ubuntu-2404
|
|
- blacksmith-32vcpu-ubuntu-2404
|
|
- blacksmith-16vcpu-windows-2025
|
|
- blacksmith-32vcpu-windows-2025
|
|
- blacksmith-16vcpu-ubuntu-2404-arm
|
|
- blacksmith-6vcpu-macos-latest
|
|
- blacksmith-12vcpu-macos-latest
|
|
- blacksmith-6vcpu-macos-15
|
|
- blacksmith-12vcpu-macos-15
|
|
- blacksmith-6vcpu-macos-26
|
|
- blacksmith-12vcpu-macos-26
|
|
|
|
# Ignore patterns for known issues
|
|
paths:
|
|
.github/workflows/**/*.yml:
|
|
ignore:
|
|
# Ignore shellcheck warnings (we run shellcheck separately)
|
|
- "shellcheck reported issue.+"
|
|
# Ignore intentional if: false for disabled jobs
|
|
- 'constant expression "false" in condition'
|
|
# actionlint's built-in runner label allowlist lags Blacksmith additions.
|
|
- 'label "blacksmith-16vcpu-[^"]+" is unknown\.'
|
|
# GitHub Actions supports concurrency.queue, but actionlint does not yet model it.
|
|
.github/workflows/docker-release.yml:
|
|
ignore:
|
|
- 'unexpected key "queue" for "concurrency" section'
|
|
.github/workflows/docker-channel-promote.yml:
|
|
ignore:
|
|
- 'unexpected key "queue" for "concurrency" section'
|