-
Notifications
You must be signed in to change notification settings - Fork 0
Add basic profile README and markdown validation workflow to .github #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| 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 | ||
| with: | ||
| globs: "**/*.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 | ||||||||
|
|
||||||||
|
||||||||
| <!-- markdownlint-disable-next-line MD013 --> |
There was a problem hiding this comment.
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.