Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions .github/workflows/markdown-lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Markdown Lint

on:
push:
branches:
- dev
pull_request:
branches:
- dev

jobs:
markdownlint:
name: Validate Markdown files
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Run markdownlint
uses: DavidAnson/markdownlint-cli2-action@v17
Comment on lines +17 to +20

Copilot AI Mar 29, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

For supply-chain security, consider pinning GitHub Actions to a commit SHA (or at least a full-length immutable ref) instead of floating version tags like @v4 / @v17. This reduces the risk of a compromised tag updating the workflow unexpectedly; Dependabot can keep pinned SHAs updated.

Suggested change
uses: actions/checkout@v4
- name: Run markdownlint
uses: DavidAnson/markdownlint-cli2-action@v17
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- name: Run markdownlint
uses: DavidAnson/markdownlint-cli2-action@3c4f0b5c2fd6e64042fbaa2ee2e0235bf52c4a63 # v17

Copilot uses AI. Check for mistakes.
with:
globs: "**/*.md"
24 changes: 22 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,22 @@
# .github
Public Profile
# Hi there, I'm bminier 👋

## About Me

- 🔭 I'm currently working on various software projects
- 🌱 I'm always learning and exploring new technologies
- 💬 Ask me about software development and open source
- 📫 How to reach me: [GitHub](https://github.com/bminier)

## Skills & Technologies

- 💻 Software Development
- 🛠️ Open Source Contributions
- 🔧 Problem Solving

## GitHub Stats

Copilot AI Mar 29, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This stats badge line is likely to violate markdownlint's default MD013 (line length) rule, which will cause the new markdown-lint workflow to fail since the repo doesn't include a markdownlint config overriding MD013. Consider adding a markdownlint config (e.g., relaxing/disable MD013) or reformatting the image URL (reference-style link) so it passes linting.

Suggested change
<!-- markdownlint-disable-next-line MD013 -->

Copilot uses AI. Check for mistakes.
![bminier's GitHub stats](https://github-readme-stats.vercel.app/api?username=bminier&show_icons=true&theme=default)

---

*Thanks for stopping by!*
Loading