From 90a5f2b152c20b69f34ac630a4eaf632686499bf Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 29 Mar 2026 16:07:27 +0000 Subject: [PATCH 1/3] Initial plan From 238fd915e37b15a211d070a14154275bfd57cf47 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 29 Mar 2026 16:08:25 +0000 Subject: [PATCH 2/3] Add basic profile information to README.md Agent-Logs-Url: https://github.com/bminier/.github/sessions/b0bb254b-9a97-4e79-ab1c-a3471578e032 Co-authored-by: bminier <6529677+bminier@users.noreply.github.com> --- README.md | 24 ++++++++++++++++++++++-- 1 file changed, 22 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 400d888..e12ea93 100644 --- a/README.md +++ b/README.md @@ -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 + +![bminier's GitHub stats](https://github-readme-stats.vercel.app/api?username=bminier&show_icons=true&theme=default) + +--- + +*Thanks for stopping by!* From a3681101032453055101e6627bd010b7f6fb8dbf Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 29 Mar 2026 16:13:05 +0000 Subject: [PATCH 3/3] Add GitHub Actions workflow to validate markdown files on PR and push to dev Agent-Logs-Url: https://github.com/bminier/.github/sessions/5e412d30-81a6-4683-ace4-6fda2ef08420 Co-authored-by: bminier <6529677+bminier@users.noreply.github.com> --- .github/workflows/markdown-lint.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/markdown-lint.yml diff --git a/.github/workflows/markdown-lint.yml b/.github/workflows/markdown-lint.yml new file mode 100644 index 0000000..49da1f0 --- /dev/null +++ b/.github/workflows/markdown-lint.yml @@ -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"