Skip to content

Commit 5065c16

Browse files
authored
Merge pull request #325 from trz42/update_readme_app_cfg_example
revise README.md and app.cfg.example
2 parents 50c21d7 + baa16fe commit 5065c16

File tree

4 files changed

+592
-326
lines changed

4 files changed

+592
-326
lines changed
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# This file is part of the EESSI build-and-deploy bot,
2+
# see https://github.com/EESSI/eessi-bot-software-layer
3+
#
4+
# The bot helps with requests to add software installations to the
5+
# EESSI software layer, see https://github.com/EESSI/software-layer
6+
#
7+
# author: Thomas Roeblitz (@trz42)
8+
#
9+
# license: GPLv2
10+
#
11+
12+
name: Markdown Lint
13+
on: [push, pull_request]
14+
# Declare default permissions as read only.
15+
permissions: read-all
16+
17+
jobs:
18+
markdown-lint:
19+
runs-on: ubuntu-24.04
20+
steps:
21+
- name: Checkout
22+
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v3.1.0
23+
24+
- name: Setup Node.js
25+
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.0
26+
with:
27+
node-version: '18'
28+
29+
- name: Install markdownlint-cli
30+
run: npm install -g markdownlint-cli
31+
32+
- name: Run markdownlint
33+
run: markdownlint "**/*.md" --ignore .git

.markdownlint.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"default": true,
3+
"MD013": false,
4+
"MD033": false,
5+
"MD041": false,
6+
"MD024": false,
7+
"MD026": {
8+
"punctuation": ".,;:!"
9+
}
10+
}

0 commit comments

Comments
 (0)