You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+17-1Lines changed: 17 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -84,7 +84,23 @@ The workflow for using this and developing the code is shown below.
84
84
./build.ps1 -Tasks build,test
85
85
```
86
86
87
-
8. Once you are happy with your code, push your branch to GitHub and create a PR against the repo.
87
+
8. Once you are ready to submit your changes for review please ensure that you update the `CHANGELOG.md` file with a summary of your changes. This is important as it helps us keep track of what has changed in the module and makes it easier for users to see what has been added or changed.
88
+
89
+
You can use the [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) format for this.
90
+
91
+
Please add your changes under the `Unreleased` section and then create a new section for the next release. PLease use human readable titles for the changes, such as `Added`, `Changed`, `Fixed`, `Deprecated`, `Removed`, and `Security`.
92
+
For example:
93
+
94
+
```markdown
95
+
## [Unreleased]
96
+
### Added
97
+
- Added new function to manage Fabric workspaces.
98
+
### Changed
99
+
- Updated documentation for `Get-FabricAPIClusterURI`.
100
+
### Fixed
101
+
- Fixed issue with `New-FabricDataPipeline` not working correctly.
102
+
```
103
+
9. Once you are happy with your code and you have updated the changelog, push your branch to GitHub and create a PR against the repo.
0 commit comments