|
| 1 | +# Contributing to Azure DevOps MCP Server |
| 2 | + |
| 3 | +We love your input! We want to make contributing to Azure DevOps MCP Server as easy and transparent as possible, whether it's: |
| 4 | + |
| 5 | +- Reporting a bug |
| 6 | +- Discussing the current state of the code |
| 7 | +- Submitting a fix |
| 8 | +- Proposing new features |
| 9 | +- Becoming a maintainer |
| 10 | + |
| 11 | +## Development Process |
| 12 | + |
| 13 | +We use GitHub to host code, to track issues and feature requests, as well as accept pull requests. |
| 14 | + |
| 15 | +## Pull Requests |
| 16 | + |
| 17 | +1. Fork the repository |
| 18 | +2. Create your feature branch (`git checkout -b feature/amazing-feature`) |
| 19 | +3. Commit your changes (see Commit Message Guidelines below) |
| 20 | +4. Push to the branch (`git push origin feature/amazing-feature`) |
| 21 | +5. Open a Pull Request |
| 22 | + |
| 23 | +## Commit Message Guidelines |
| 24 | + |
| 25 | +We follow the [Conventional Commits](https://www.conventionalcommits.org/) specification for our commit messages. This leads to more readable messages that are easy to follow when looking through the project history and enables automatic versioning and changelog generation. |
| 26 | + |
| 27 | +### Commit Message Format |
| 28 | + |
| 29 | +Each commit message consists of a **header**, a **body**, and a **footer**. The header has a special format that includes a **type**, a **scope**, and a **subject**: |
| 30 | + |
| 31 | +``` |
| 32 | +<type>(<scope>): <subject> |
| 33 | +<BLANK LINE> |
| 34 | +<body> |
| 35 | +<BLANK LINE> |
| 36 | +<footer> |
| 37 | +``` |
| 38 | + |
| 39 | +The **header** is mandatory, while the **scope** of the header is optional. |
| 40 | + |
| 41 | +### Type |
| 42 | + |
| 43 | +Must be one of the following: |
| 44 | + |
| 45 | +- **feat**: A new feature |
| 46 | +- **fix**: A bug fix |
| 47 | +- **docs**: Documentation only changes |
| 48 | +- **style**: Changes that do not affect the meaning of the code (white-space, formatting, etc) |
| 49 | +- **refactor**: A code change that neither fixes a bug nor adds a feature |
| 50 | +- **perf**: A code change that improves performance |
| 51 | +- **test**: Adding missing tests or correcting existing tests |
| 52 | +- **build**: Changes that affect the build system or external dependencies |
| 53 | +- **ci**: Changes to our CI configuration files and scripts |
| 54 | +- **chore**: Other changes that don't modify src or test files |
| 55 | + |
| 56 | +### Subject |
| 57 | + |
| 58 | +The subject contains a succinct description of the change: |
| 59 | + |
| 60 | +- Use the imperative, present tense: "change" not "changed" nor "changes" |
| 61 | +- Don't capitalize the first letter |
| 62 | +- No period (.) at the end |
| 63 | + |
| 64 | +### Body |
| 65 | + |
| 66 | +The body should include the motivation for the change and contrast this with previous behavior. |
| 67 | + |
| 68 | +### Footer |
| 69 | + |
| 70 | +The footer should contain any information about **Breaking Changes** and is also the place to reference GitHub issues that this commit closes. |
| 71 | + |
| 72 | +Breaking Changes should start with the word `BREAKING CHANGE:` with a space or two newlines. The rest of the commit message is then used for this. |
| 73 | + |
| 74 | +### Using the Interactive Tool |
| 75 | + |
| 76 | +To simplify the process of creating correctly formatted commit messages, we've set up a tool that will guide you through the process. Simply use: |
| 77 | + |
| 78 | +```bash |
| 79 | +npm run commit |
| 80 | +``` |
| 81 | + |
| 82 | +This will start an interactive prompt that will help you generate a properly formatted commit message. |
| 83 | + |
| 84 | +## Automated Release Workflow |
| 85 | + |
| 86 | +Our project uses an automated release workflow that leverages Conventional Commits to manage semantic versioning, generate changelogs, and create GitHub Releases. |
| 87 | + |
| 88 | +The workflow is currently triggered manually via GitHub Actions' `workflow_dispatch` feature. In the future, it may be configured to run automatically on merges to the `main` branch. |
| 89 | + |
| 90 | +When the workflow runs, it: |
| 91 | + |
| 92 | +1. Analyzes the commit messages since the last release |
| 93 | +2. Determines the appropriate semantic version bump |
| 94 | +3. Updates the version in package.json |
| 95 | +4. Generates or updates the CHANGELOG.md file |
| 96 | +5. Creates a new Git tag |
| 97 | +6. Creates a GitHub Release with release notes |
| 98 | + |
| 99 | +This automation ensures consistent and well-documented releases that accurately reflect the changes made since the previous release. |
| 100 | + |
| 101 | +## License |
| 102 | + |
| 103 | +By contributing, you agree that your contributions will be licensed under the project's license. |
0 commit comments