Search Gradle plugins

name.remal.github-repository-info

A Gradle plugin that provides functionality to access GitHub repository information directly from the build environment.

https://github.com/remal-gradle-plugins/github-repository-info

Sources: https://github.com/remal-gradle-plugins/github-repository-info

Version 1.0.0-rc-2

Created 27 October 2025.

A Gradle plugin that provides functionality to access GitHub repository information directly from the build environment.

Add this plugin to your build using the plugins DSL:

plugins {
  id("name.remal.github-repository-info") version "1.0.0-rc-2"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("name.remal.github-repository-info:name.remal.github-repository-info.gradle.plugin:1.0.0-rc-2")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("name.remal.github-repository-info")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("name.remal.github-repository-info:name.remal.github-repository-info.gradle.plugin:1.0.0-rc-2")
      }
    }
    
    apply(plugin = "name.remal.github-repository-info")
  • Applying plugins to all subprojects .