Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
DuniterPy
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
clients
python
DuniterPy
Merge requests
!192
CI: Trigger mdformat hook on *.md file change
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
CI: Trigger mdformat hook on *.md file change
ci_mdformat
into
main
Overview
0
Commits
3
Pipelines
4
Changes
2
Merged
Moul
requested to merge
ci_mdformat
into
main
1 year ago
Overview
0
Commits
3
Pipelines
4
Changes
2
Trigger
pre-commit:hooks
job when
*.md
file changes
simplify files matching rules
fix changelog with
mdformat
0
0
Merge request reports
Compare
main
version 1
16ff9f45
1 year ago
main (base)
and
latest version
latest version
e6184c51
3 commits,
1 year ago
version 1
16ff9f45
3 commits,
1 year ago
2 files
+
13
−
7
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
.gitlab-ci.yml
+
11
−
7
View file @ e6184c51
Edit in single-file editor
Open in Web IDE
Show full file
@@ -13,16 +13,20 @@ image: $DOCKER_IMAGE/$PYTHON_VERSION:latest
.code_changes
:
rules
:
-
changes
:
-
duniterpy/**/*.py
-
tests/**/*.py
-
examples/*.py
-
"
**.py"
-
.pre-commit-config.yaml
.doc_changes
:
rules
:
-
changes
:
-
"
**.py"
-
"
**.md"
-
.pre-commit-config.yaml
.changes
:
rules
:
-
changes
:
-
duniterpy/**/*.py
-
tests/**/*.py
-
examples/*.py
-
"
**.py"
-
.gitlab-ci.yml
-
Makefile
-
pyproject.toml
@@ -82,7 +86,7 @@ mypy:
pre-commit:hooks
:
extends
:
-
.
code
_changes
-
.
doc
_changes
-
.pre-commit
stage
:
checks
script
:
Loading