Skip to content

Conversation

@lucgei231
Copy link
Owner

@lucgei231 lucgei231 commented Aug 20, 2025

Summary by Sourcery

Update build configuration to publish artifacts to GitHub Packages and align the Maven group ID with the GitHub organization.

Enhancements:

  • Update project group ID to 'io.github.diamondstar_mods'
  • Add GitHub Packages as a Maven publishing repository with environment-based credentials

@sourcery-ai
Copy link

sourcery-ai bot commented Aug 20, 2025

Reviewer's guide (collapsed on small PRs)

Reviewer's Guide

This PR standardizes project coordinates and enables publishing to GitHub Packages by updating the Gradle configuration with a fixed group ID and adding a Maven repository entry that uses environment-based credentials.

Flow diagram for environment-based credentials in publishing

flowchart TD
    A[Gradle Build]
    B[Read USERNAME from env]
    C[Read TOKEN from env]
    D[Configure Maven Repository]
    E[Publish to GitHub Packages]
    A --> B
    A --> C
    B --> D
    C --> D
    D --> E
Loading

File-Level Changes

Change Details Files
Standardize project group ID
  • Replaced dynamic maven_group reference with hard-coded GitHub org identifier
build.gradle
Configure publishing to GitHub Packages
  • Added Maven repository named GitHubPackages under publishing
  • Set repository URL using GITHUB_REPOSITORY environment variable
  • Configured credentials to use USERNAME and TOKEN environment variables
build.gradle

Tips and commands

Interacting with Sourcery

  • Trigger a new review: Comment @sourcery-ai review on the pull request.
  • Continue discussions: Reply directly to Sourcery's review comments.
  • Generate a GitHub issue from a review comment: Ask Sourcery to create an
    issue from a review comment by replying to it. You can also reply to a
    review comment with @sourcery-ai issue to create an issue from it.
  • Generate a pull request title: Write @sourcery-ai anywhere in the pull
    request title to generate a title at any time. You can also comment
    @sourcery-ai title on the pull request to (re-)generate the title at any time.
  • Generate a pull request summary: Write @sourcery-ai summary anywhere in
    the pull request body to generate a PR summary at any time exactly where you
    want it. You can also comment @sourcery-ai summary on the pull request to
    (re-)generate the summary at any time.
  • Generate reviewer's guide: Comment @sourcery-ai guide on the pull
    request to (re-)generate the reviewer's guide at any time.
  • Resolve all Sourcery comments: Comment @sourcery-ai resolve on the
    pull request to resolve all Sourcery comments. Useful if you've already
    addressed all the comments and don't want to see them anymore.
  • Dismiss all Sourcery reviews: Comment @sourcery-ai dismiss on the pull
    request to dismiss all existing Sourcery reviews. Especially useful if you
    want to start fresh with a new review - don't forget to comment
    @sourcery-ai review to trigger a new review!

Customizing Your Experience

Access your dashboard to:

  • Enable or disable review features such as the Sourcery-generated pull request
    summary, the reviewer's guide, and others.
  • Change the review language.
  • Add, remove or edit custom review instructions.
  • Adjust other review settings.

Getting Help

@lucgei231 lucgei231 merged commit c34bd01 into lucgei231:fabric-1.21.7 Aug 20, 2025
2 checks passed
Copy link

@sourcery-ai sourcery-ai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hey there - I've reviewed your changes and they look great!

Prompt for AI Agents
Please address the comments from this code review:
## Individual Comments

### Comment 1
<location> `build.gradle:80` </location>
<code_context>
-        // Add publishing targets here if needed
+        maven {
+            name = "GitHubPackages"
+            url = uri("https://maven.pkg.github.com/${System.getenv('GITHUB_REPOSITORY')}")
+            credentials {
+                username = System.getenv("USERNAME")
+                password = System.getenv("TOKEN")
+            }
+        }
</code_context>

<issue_to_address>
Using environment variables for credentials is standard, but consider error handling for missing values.

Consider adding checks to ensure USERNAME, TOKEN, and GITHUB_REPOSITORY are set, and provide clear error messages if they are missing.
</issue_to_address>

<suggested_fix>
<<<<<<< SEARCH
    repositories {
        maven {
            name = "GitHubPackages"
            url = uri("https://maven.pkg.github.com/${System.getenv('GITHUB_REPOSITORY')}")
            credentials {
                username = System.getenv("USERNAME")
                password = System.getenv("TOKEN")
            }
        }
    }
=======
    repositories {
        // Check for required environment variables
        def githubRepo = System.getenv('GITHUB_REPOSITORY')
        def githubUsername = System.getenv('USERNAME')
        def githubToken = System.getenv('TOKEN')

        if (!githubRepo) {
            throw new GradleException("Missing required environment variable: GITHUB_REPOSITORY")
        }
        if (!githubUsername) {
            throw new GradleException("Missing required environment variable: USERNAME")
        }
        if (!githubToken) {
            throw new GradleException("Missing required environment variable: TOKEN")
        }

        maven {
            name = "GitHubPackages"
            url = uri("https://maven.pkg.github.com/${githubRepo}")
            credentials {
                username = githubUsername
                password = githubToken
            }
        }
    }
>>>>>>> REPLACE

</suggested_fix>

Sourcery is free for open source - if you like our reviews please consider sharing them ✨
Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.

Comment on lines 77 to 86
repositories {
// Add publishing targets here if needed
maven {
name = "GitHubPackages"
url = uri("https://maven.pkg.github.com/${System.getenv('GITHUB_REPOSITORY')}")
credentials {
username = System.getenv("USERNAME")
password = System.getenv("TOKEN")
}
}
}
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

suggestion: Using environment variables for credentials is standard, but consider error handling for missing values.

Consider adding checks to ensure USERNAME, TOKEN, and GITHUB_REPOSITORY are set, and provide clear error messages if they are missing.

Suggested change
repositories {
// Add publishing targets here if needed
maven {
name = "GitHubPackages"
url = uri("https://maven.pkg.github.com/${System.getenv('GITHUB_REPOSITORY')}")
credentials {
username = System.getenv("USERNAME")
password = System.getenv("TOKEN")
}
}
}
repositories {
// Check for required environment variables
def githubRepo = System.getenv('GITHUB_REPOSITORY')
def githubUsername = System.getenv('USERNAME')
def githubToken = System.getenv('TOKEN')
if (!githubRepo) {
throw new GradleException("Missing required environment variable: GITHUB_REPOSITORY")
}
if (!githubUsername) {
throw new GradleException("Missing required environment variable: USERNAME")
}
if (!githubToken) {
throw new GradleException("Missing required environment variable: TOKEN")
}
maven {
name = "GitHubPackages"
url = uri("https://maven.pkg.github.com/${githubRepo}")
credentials {
username = githubUsername
password = githubToken
}
}
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant