From 56185bffdb7da63c8f28a19deaae32dc45ad08ff Mon Sep 17 00:00:00 2001 From: cloudix_mcp_server Date: Fri, 12 Jun 2026 15:32:06 -0400 Subject: [PATCH] feat(ci): add hadolint workflow with step-level continue-on-error --- .gitea/workflows/hadolint.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .gitea/workflows/hadolint.yaml diff --git a/.gitea/workflows/hadolint.yaml b/.gitea/workflows/hadolint.yaml new file mode 100644 index 0000000..aaf42eb --- /dev/null +++ b/.gitea/workflows/hadolint.yaml @@ -0,0 +1,17 @@ +name: Hadolint + +on: + pull_request: + push: + branches: [main] + +jobs: + hadolint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@df4cb1c069e1874edd31b4143172cec0e10 # v6 + - uses: hadolint/hadolint-action@2332a7b74a6de0dda2221d575162ebab76ba5e5 # v3.3.0 + continue-on-error: true + with: + dockerfile: Dockerfile + failure-threshold: error