This is an automated email from the ASF dual-hosted git repository. jamesfredley pushed a commit to branch grails-doc-referrences in repository https://gitbox.apache.org/repos/asf/grails-core.git
commit 564c39349cb77d542f988fd86545efae60a4c827 Author: James Fredley <[email protected]> AuthorDate: Fri Sep 5 10:50:26 2025 -0400 Update GitHub references and default project slug Updated CONTRIBUTING.md to clarify issue tracking for documentation. Changed the default githubSlug in CreateReleaseDropDownTask from 'apache/grails-doc' to 'apache/grails-core'. --- CONTRIBUTING.md | 2 +- .../main/groovy/grails/doc/dropdown/CreateReleaseDropDownTask.groovy | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index cba8dac2b9..a6f63c43a5 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -94,7 +94,7 @@ A good bug report shouldn't leave others needing to chase you up for more inform > You must never report security related issues, vulnerabilities or bugs > including sensitive information to the issue tracker, or elsewhere in > public. Instead, sensitive bugs must be sent by email to [email protected]. -Grails uses GitHub to track issues in the [core framework](https://github.com/apache/grails-core/issues). Similarly, for its documentation there is a [separate tracker](https://github.com/apache/grails-doc/issues). If you run into an issue with the project: +Grails uses GitHub to track issues in the [core framework](https://github.com/apache/grails-core/issues) and documentation. If you run into an issue with the project: - Open an [Issue](https://github.com/apache/grails-core/issues/new). - Explain the behavior you would expect and the actual behavior. diff --git a/grails-gradle/docs-core/src/main/groovy/grails/doc/dropdown/CreateReleaseDropDownTask.groovy b/grails-gradle/docs-core/src/main/groovy/grails/doc/dropdown/CreateReleaseDropDownTask.groovy index 062be283d7..67f11f03a4 100644 --- a/grails-gradle/docs-core/src/main/groovy/grails/doc/dropdown/CreateReleaseDropDownTask.groovy +++ b/grails-gradle/docs-core/src/main/groovy/grails/doc/dropdown/CreateReleaseDropDownTask.groovy @@ -93,7 +93,7 @@ abstract class CreateReleaseDropDownTask extends DefaultTask { CreateReleaseDropDownTask(ObjectFactory objects, Project project) { group = 'documentation' githubSlug = objects.property(String).convention(project.provider { - project.findProperty('githubSlug') as String ?: 'apache/grails-doc' + project.findProperty('githubSlug') as String ?: 'apache/grails-core' }) sourceDocsDirectory = objects.directoryProperty().convention(project.layout.buildDirectory.dir('manual')) projectVersion = objects.property(String).convention(project.provider { project.version as String })
