Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Closes #309
This pull request introduces several key changes to the CI/CD pipeline, branch name validation, and versioning for the project. The most significant updates include the implementation of GitHub Actions workflows, Gradle scripts for branch name validation and Maven publishing, and scripts for version checking.
CI/CD Pipeline Enhancements:
.github/workflows/ci.yml
: Added a comprehensive GitHub Actions workflow for continuous integration, including steps for building, testing, and deploying the project..github/workflows/dependabot-auto-merge.yml
: Introduced a workflow to automatically merge Dependabot pull requests based on specific conditions.Branch Name Validation:
gradle/scripts/branchName.gradle
: Implemented a Gradle task to validate branch names against predefined patterns.scripts/branch_type.sh
: Added a script to determine the branch type based on the branch name pattern.Versioning and Publishing:
gradle/scripts/mavenCentralPublish.gradle
: Created a Gradle script for publishing artifacts to Maven Central, including tasks for generating source and Javadoc JARs.gradle/scripts/semVer.gradle
: Added tasks for handling semantic versioning using the semver-gradle plugin.scripts/get_versions.sh
,scripts/run-version-check.sh
,scripts/version_check.sh
: Introduced scripts to fetch and compare versions for pull requests and branches. [1] [2] [3]Miscellaneous:
gradle/wrapper/gradle-wrapper.properties
: Updated the Gradle wrapper to version 8.13 and added network timeout settings.gradlew
,gradlew.bat
: Made minor updates to the Gradle wrapper scripts, including SPDX license identifier and improved error messages. [1] [2]