Compare commits

...

9 Commits

Author SHA1 Message Date
e8a532ffd5
fix(Makefile): get rid of unqualified container images
All checks were successful
Lint Markdown files / markdown-lint (push) Successful in 13s
Build / build-amd64 (push) Successful in 28s
Build / build-arm64 (push) Successful in 1m57s
2025-05-12 22:47:22 +02:00
754884751e
docs(README): migrate from docker.io to git.cryptic.systems
All checks were successful
Build / build-arm64 (push) Successful in 1m53s
Lint Markdown files / markdown-lint (push) Successful in 16s
Update Docker Hub Description / update-description-on-hub-docker-io (push) Successful in 13s
Build / build-amd64 (push) Successful in 1m50s
2025-05-12 18:19:07 +02:00
28bcbd6078
style(markdownlint): update configuration
All checks were successful
Build / build-arm64 (push) Successful in 1m50s
Lint Markdown files / markdown-lint (push) Successful in 11s
Build / build-amd64 (push) Successful in 1m52s
2025-05-09 11:28:00 +02:00
2718942fd3
fix(ci): add workflow_dispatch
All checks were successful
Build / build-arm64 (push) Successful in 1m50s
Lint Markdown files / markdown-lint (push) Successful in 10s
Build / build-amd64 (push) Successful in 1m52s
2025-05-08 21:00:56 +02:00
f00f7a7490
fix(makefile): remove the deletion of the base image via make clean
All checks were successful
Build / build-amd64 (push) Successful in 1m52s
Build / build-arm64 (push) Successful in 1m50s
Lint Markdown files / markdown-lint (push) Successful in 11s
2025-05-08 18:44:15 +02:00
63dba6bd86
fix(makefile): remove unqualified image name
Some checks failed
Lint Markdown files / markdown-lint (push) Waiting to run
Build / build-arm64 (push) Has been cancelled
Build / build-amd64 (push) Has been cancelled
2025-05-08 18:41:45 +02:00
1302e5f2b3
fix(ci): style
All checks were successful
Build / build-arm64 (push) Successful in 1m41s
Lint Markdown files / markdown-lint (push) Successful in 10s
Build / build-amd64 (push) Successful in 1m49s
2025-05-08 18:18:22 +02:00
548c26594e
fix(ci): add action DavidAnson/markdownlint-cli2-action@v19.1.0
All checks were successful
Build / build-arm64 (push) Successful in 1m46s
Build / build-amd64 (push) Successful in 1m52s
Lint Markdown files / markdown-lint (push) Successful in 10s
2025-05-08 18:13:13 +02:00
d945fd2050
fix(ci): define correct image tag
All checks were successful
Build / build-amd64 (push) Successful in 1m35s
Build / build-arm64 (push) Successful in 1m45s
2025-05-07 22:47:23 +02:00
7 changed files with 31 additions and 18 deletions

View File

@ -3,9 +3,9 @@ name: Build
on: on:
pull_request: pull_request:
types: types:
- "opened" - opened
- "reopened" - reopened
- "synchronize" - synchronize
push: push:
branches: branches:
- master - master

View File

@ -0,0 +1,22 @@
name: 'Lint Markdown files'
on:
pull_request:
types:
- opened
- reopened
- synchronize
push:
branches:
- master
workflow_dispatch: {}
jobs:
markdown-lint:
runs-on:
- ubuntu-latest
steps:
- uses: actions/checkout@v4.2.2
- uses: DavidAnson/markdownlint-cli2-action@v19.1.0
with:
globs: '**/*.md'

View File

@ -55,7 +55,7 @@ jobs:
--platform linux/amd64 \ --platform linux/amd64 \
--provenance false \ --provenance false \
--push \ --push \
--tag git.cryptic.systems/volker.raschek/yamllint:1.37.1-amd64 \ --tag git.cryptic.systems/volker.raschek/yamllint:${TAG}-amd64 \
. .
push-manifest: push-manifest:

View File

@ -6,6 +6,7 @@ on:
- master - master
paths: paths:
- README.md - README.md
workflow_dispatch: {}
jobs: jobs:
update-description-on-hub-docker-io: update-description-on-hub-docker-io:

View File

@ -56,8 +56,6 @@ MD013:
tables: false tables: false
# Include headings # Include headings
headings: true headings: true
# Include headings
headers: true
# Strict length checking # Strict length checking
strict: false strict: false
# Stern length checking # Stern length checking
@ -70,11 +68,6 @@ MD022:
# Blank lines below heading # Blank lines below heading
lines_below: 1 lines_below: 1
# MD024/no-duplicate-heading/no-duplicate-header - Multiple headings with the same content
MD024:
# Only check sibling headings
allow_different_nesting: true
# MD025/single-title/single-h1 - Multiple top-level headings in the same document # MD025/single-title/single-h1 - Multiple top-level headings in the same document
MD025: MD025:
# Heading level # Heading level

View File

@ -16,7 +16,6 @@ YAMLLINT_IMAGE_NAMESPACE?=${YAMLLINT_IMAGE_REGISTRY_USER}
YAMLLINT_IMAGE_NAME:=yamllint YAMLLINT_IMAGE_NAME:=yamllint
YAMLLINT_IMAGE_VERSION?=latest YAMLLINT_IMAGE_VERSION?=latest
YAMLLINT_IMAGE_FULLY_QUALIFIED=${YAMLLINT_IMAGE_REGISTRY_NAME}/${YAMLLINT_IMAGE_NAMESPACE}/${YAMLLINT_IMAGE_NAME}:${YAMLLINT_IMAGE_VERSION} YAMLLINT_IMAGE_FULLY_QUALIFIED=${YAMLLINT_IMAGE_REGISTRY_NAME}/${YAMLLINT_IMAGE_NAMESPACE}/${YAMLLINT_IMAGE_NAME}:${YAMLLINT_IMAGE_VERSION}
YAMLLINT_IMAGE_UNQUALIFIED=${YAMLLINT_IMAGE_NAMESPACE}/${YAMLLINT_IMAGE_NAME}:${YAMLLINT_IMAGE_VERSION}
# BUILD CONTAINER IMAGE # BUILD CONTAINER IMAGE
# ============================================================================== # ==============================================================================
@ -28,15 +27,13 @@ container-image/build:
--no-cache \ --no-cache \
--pull \ --pull \
--tag ${YAMLLINT_IMAGE_FULLY_QUALIFIED} \ --tag ${YAMLLINT_IMAGE_FULLY_QUALIFIED} \
--tag ${YAMLLINT_IMAGE_UNQUALIFIED} \
. .
# DELETE CONTAINER IMAGE # DELETE CONTAINER IMAGE
# ============================================================================== # ==============================================================================
PHONY:=container-image/delete PHONY:=container-image/delete
container-image/delete: container-image/delete:
- ${CONTAINER_RUNTIME} image rm ${YAMLLINT_IMAGE_FULLY_QUALIFIED} ${YAMLLINT_IMAGE_UNQUALIFIED} - ${CONTAINER_RUNTIME} image rm ${YAMLLINT_IMAGE_FULLY_QUALIFIED}
- ${CONTAINER_RUNTIME} image rm ${BASE_IMAGE_FULL}
# PUSH CONTAINER IMAGE # PUSH CONTAINER IMAGE
# ============================================================================== # ==============================================================================

View File

@ -2,8 +2,8 @@
[![Docker Pulls](https://img.shields.io/docker/pulls/volkerraschek/yamllint)](https://hub.docker.com/r/volkerraschek/yamllint) [![Docker Pulls](https://img.shields.io/docker/pulls/volkerraschek/yamllint)](https://hub.docker.com/r/volkerraschek/yamllint)
This project contains all sources to build the container image `docker.io/volkerraschek/yamllint`. The primary goal of This project contains all sources to build the container image `git.cryptic.systems/volker.raschek/yamllint`. The
this project is to package the binary `yamllint` as container image. The source code of the binary can be found in the primary goal of this project is to package the binary `yamllint` as container image. The source code of the binary can
upstream project of [adrienverge](https://github.com/adrienverge/yamllint). be found in the upstream project of [adrienverge](https://github.com/adrienverge/yamllint).
The workflow or how `yamllint` can in general be used is documented [here](https://yamllint.readthedocs.io/en/stable/). The workflow or how `yamllint` can in general be used is documented [here](https://yamllint.readthedocs.io/en/stable/).