Skip to content

Fix YAML formatting in msbuild.yml workflow#1

Draft
Copilot wants to merge 2 commits intomasterfrom
copilot/build-msbuild-yml-file
Draft

Fix YAML formatting in msbuild.yml workflow#1
Copilot wants to merge 2 commits intomasterfrom
copilot/build-msbuild-yml-file

Conversation

Copy link
Copy Markdown

Copilot AI commented Oct 19, 2025

Overview

Fixed YAML syntax formatting in the MSBuild GitHub Actions workflow to follow best practices and resolve linting errors.

Changes

Updated the branches trigger configuration in .github/workflows/msbuild.yml from compact bracket notation to the standard YAML list format:

Before:

on:
  workflow_dispatch:
  push:
    branches: [ "master" ]

After:

on:
  workflow_dispatch:
  push:
    branches:
      - master

Benefits

  • Resolves YAML linting errors about excessive spacing inside brackets
  • Improves readability and follows GitHub Actions best practices
  • Maintains full functionality - workflow continues to trigger on pushes to master and manual dispatch

The workflow remains fully functional and will build MinHook for both Win32 and x64 platforms using Visual Studio 2022, collecting and uploading build artifacts as designed.

Original prompt

On msbuild.yml, build


💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.

Co-authored-by: majyo-ue <197039503+majyo-ue@users.noreply.github.com>
Copilot AI changed the title [WIP] Build configuration for msbuild.yml Fix YAML formatting in msbuild.yml workflow Oct 19, 2025
Copilot AI requested a review from maj-ue October 19, 2025 12:21
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants