Conversation
…unosy This commit updates the project namespace across all files to reflect the new organizational structure. All package declarations, imports, and references have been updated from pro.civitaspo to com.github.Gunosy. Changes include: - Renamed directory structure from src/main/scala/pro/civitaspo to src/main/scala/com/github/Gunosy - Updated all Scala source files with new package declarations and imports - Updated build.gradle group identifier - Updated META-INF/services plugin configuration - Updated documentation and examples Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
CircleCI badge has been removed as it references the original repository. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
- Add GitHub Actions workflow for CI builds - Disable CircleCI workflow by commenting out the workflows section - GitHub Actions workflow runs on push/PR to develop and main branches - Uses Temurin JDK 8 distribution with Gradle caching - Uploads build artifacts with 7-day retention Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Temporary change to test GitHub Actions workflow on the current branch. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
- Add Dockerfile with OpenJDK 8 for building the project - Add docker-compose.yml with separate build and test services - Add .dockerignore to exclude unnecessary files - Add DOCKER.md with usage instructions - Gradle cache is persisted in a Docker volume for faster builds Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
- Change FROM openjdk:8-jdk to eclipse-temurin:8-jdk - Remove version from docker-compose.yml (deprecated) - Remove pre-build step from Dockerfile to speed up image creation - Tests and build pass successfully in Docker Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
- Add GitHub Actions workflow for creating releases on tag push - Workflow builds the project and creates GitHub Release - Automatically triggers JitPack build for the new version - Update DOCKER.md with release instructions Usage: git tag v0.4.1 git push origin v0.4.1 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
- Add test execution before build in CI workflow - Add test execution before build in release workflow - Ensures tests pass before creating artifacts or releases Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
- Bump project version from 0.4.0 to 0.4.1 - Update digdag dependency from 0.9.39 to 0.9.42 for compatibility Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
CircleCI configuration has been fully replaced by GitHub Actions. GitHub Actions provides equivalent functionality with additional features: - Explicit test execution - Artifact uploads - Automated releases via tags Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
- Add check to ensure tags are created from main branch - Prevents accidental releases from development branches - Fetch full git history to check branch ancestry Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
- Automatically creates release PR from develop to main - Triggered on push to develop branch - Uses bakunyo/git-pr-release-action Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
- Remove temporary adnw-7758 branch from CI triggers - Clean up test configuration Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
shotahirao
reviewed
Mar 17, 2026
There was a problem hiding this comment.
@redfit
jcenter()とdl.bintray.comが閉鎖済みなので削除お願いします🙏
digdag-operator-athena/build.gradle
Lines 17 to 20 in 9efdef4
- Remove jcenter (shut down in 2022) - Remove bintray/digdag/maven (shut down in 2021) - Keep only mavenCentral which is actively maintained Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Author
|
@shotahirao ありがとうございます! |
|
@redfit digdag-operator-athena/README.md Line 18 in 9d304ca |
kimura-gn
approved these changes
Mar 17, 2026
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 task
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
概要
パッケージ名の変更とCI/CDの刷新を行います。
主な変更内容
1. パッケージ名の変更
pro.civitaspo→com.github.Gunosyに全面的に変更2. CI/CDの移行
ci.yml: develop/mainブランチへのpush/PR時にビルド・テスト実行release.yml: mainブランチのタグpush時にリリースを自動作成git-pr-release.yml: developへのpush時にmainへのリリースPRを自動作成3. Docker対応
4. JitPack対応
5. バージョン更新
6. mainブランチの作成
テスト結果
破壊的変更
パッケージ名が変更されているため、既存のユーザーは依存関係の更新が必要です:
Before:
After:
リリース手順
git tag v0.4.1git push origin v0.4.1JitPackへのリリース
testバージョンがリリースされているのを確認

関連Issue
ADNW-7758