- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for getContributorsInReleaseNotes (0.34 sec)
-
build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/CheckContributorsInReleaseNotes.kt
abstract class CheckContributorsInReleaseNotes : AbstractCheckOrUpdateContributorsInReleaseNotes() { @TaskAction fun check() { val contributorsInReleaseNotes = TreeSet(getContributorsInReleaseNotes().map { it.login }) val contributorsFromPullRequests = TreeSet(getContributorsFromPullRequests().map { it.login })
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Fri Jun 28 08:29:24 UTC 2024 - 1.9K bytes - Viewed (0) -
build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/UpdateContributorsInReleaseNotes.kt
abstract class UpdateContributorsInReleaseNotes : AbstractCheckOrUpdateContributorsInReleaseNotes() { @TaskAction fun update() { val contributorsInReleaseNotes = getContributorsInReleaseNotes().associateBy { it.login } val contributorsFromPullRequests = getContributorsFromPullRequests().associateBy { it.login }
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Sun Dec 15 07:49:41 UTC 2024 - 2K bytes - Viewed (0) -
build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/AbstractCheckOrUpdateContributorsInReleaseNotes.kt
@get: Internal abstract val milestone: Property<String> @get: Internal abstract val githubToken: Property<String> @Internal protected fun getContributorsInReleaseNotes(): Set<GitHubUser> { val (_, contributorLines, _) = parseReleaseNotes() return contributorLines .map { it.trim() } .filter { it.isNotEmpty() }Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Tue Jun 24 07:54:08 UTC 2025 - 5.7K bytes - Viewed (0)