-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathNullNotesGenerator.cfc
More file actions
28 lines (26 loc) · 969 Bytes
/
NullNotesGenerator.cfc
File metadata and controls
28 lines (26 loc) · 969 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
component implements="interfaces.NotesGenerator" {
/**
* Generates markdown notes for the new release on GitHub
*
* @lastVersion The last version of the package.
* @nextVersion The next version of the package.
* @commits An array of commits between the two versions.
* @type The type of the next release: major, minor, or patch.
* @repositoryUrl The url of the remote repository.
* @dryRun Flag to indicate a dry run of the release.
* @verbose Flag to indicate printing out extra information.
*
* @return A string containing the new notes for the release.
*/
public string function run(
required string lastVersion,
required string nextVersion,
required array commits,
required string type,
required string repositoryUrl,
boolean dryRun = false,
boolean verbose = true
) {
return "";
}
}