Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getContributorsInReleaseNotes (0.25 sec)

  1. 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 Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 16 05:03:11 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  2. 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 Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 01 00:58:07 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  3. 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 Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 16 05:03:11 UTC 2022
    - 5.7K bytes
    - Viewed (0)
Back to top