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
/// - session: RequestKitURLSession, defaults to URLSession.shared()
173
+
/// - owner: The user or organization that owns the repositories.
174
+
/// - repo: The repository on which the release needs to be deleted.
175
+
/// - releaseId: The ID of the release to delete.
176
+
/// - completion: Callback for the outcome of the deletion.
177
+
@discardableResult
178
+
/// Generates release notes.
179
+
/// - Parameters:
180
+
/// - session: RequestKitURLSession, defaults to URLSession.shared()
181
+
/// - owner: The user or organization that owns the repositories.
182
+
/// - repo: The repository on which the release needs to be deleted.
183
+
/// - tagName: The tag name for the release. This can be an existing tag or a new one.
184
+
/// - targetCommitish: Specifies the commitish value that will be the target for the release's tag. Required if the supplied tag_name does not reference an existing tag. Ignored if the tagName already exists.
185
+
/// - previousTagName: The name of the previous tag to use as the starting point for the release notes. Use to manually specify the range for the set of changes considered as part this release.
186
+
/// - completion: Callback for the outcome of the generation.
0 commit comments