Skip to content

Commit 204025e

Browse files
committed
fix paths for submodule
1 parent 3daafaa commit 204025e

File tree

10 files changed

+35
-36
lines changed

10 files changed

+35
-36
lines changed

.github/workflows/lint_reusable.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Load super-linter configuration
1919
# source
2020
# https://github.com/super-linter/super-linter/blob/main/docs/run-linter-locally.md#share-environment-variables-between-environments
21-
run: grep -v '^#' .muggle/super-linter.env >> "$GITHUB_ENV"
21+
run: grep -v '^#' super-linter.env >> "$GITHUB_ENV"
2222
- name: Lint Code Base
2323
# must be in sync with version in compose file
2424
uses: super-linter/[email protected]

.markdownlint.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
# headers with the same content
3+
MD024: false
4+
# inline html
5+
MD033: false

.muggle/Makefile

Lines changed: 0 additions & 15 deletions
This file was deleted.

.muggle/docker-compose.yml

Lines changed: 0 additions & 14 deletions
This file was deleted.

Makefile

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1-
#!make
1+
include make/help.make
2+
.DELETE_ON_ERROR:
23

3-
include .muggle/Makefile
4+
.PHONY: all help lint
5+
6+
.DEFAULT_GOAL := help
7+
8+
## Run all targets
9+
all: render
10+
11+
## Lint code base
12+
lint:
13+
@echo "Linting ..."
14+
docker compose up super-linter
15+
@echo "... linting done."

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
# workflows
1+
# muggle
22

3-
Reusable GitHub Actions (GHA) Workflows
3+
devops package

docker-compose.yml

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
11
---
2-
include:
3-
- .muggle/docker-compose.yml
2+
services:
3+
super-linter:
4+
# version needs to be in sync with version in .github/*.yml
5+
image: ghcr.io/super-linter/super-linter:slim-v7.2.1
6+
environment:
7+
- RUN_LOCAL=true
8+
# fix for amd64 bug as per https://github.com/super-linter/super-linter/issues/5070
9+
- SHELL=/bin/bash
10+
platform: linux/amd64
11+
env_file:
12+
- ./super-linter.env
13+
volumes:
14+
- ./:/tmp/lint
File renamed without changes.

0 commit comments

Comments
 (0)