Skip to content

Commit

Permalink
cicd: Changed org name
Browse files Browse the repository at this point in the history
  • Loading branch information
jruaux committed Apr 25, 2024
1 parent d93074f commit 3ede2ab
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 20 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/early-access.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ name: 'Early Access'

on:
push:
branches: [ master ]
branches: [ main ]

jobs:
earlyaccess:
name: 'Early Access'
if: github.repository == 'redis-developer/spring-batch-redis' && startsWith(github.event.head_commit.message, 'Releasing version') != true
if: github.repository == 'redis/spring-batch-redis' && startsWith(github.event.head_commit.message, 'Releasing version') != true
uses: redis-field-engineering/redis-github-workflows/.github/workflows/early-access.yml@main
with:
jreleaser-arguments: full-release
Expand All @@ -18,7 +18,4 @@ jobs:
gpg-public-key: ${{ secrets.GPG_PUBLIC_KEY }}
gpg-secret-key: ${{ secrets.GPG_SECRET_KEY }}
sonatype-username: ${{ secrets.SONATYPE_USERNAME }}
sonatype-password: ${{ secrets.SONATYPE_PASSWORD }}
docker-username: ${{ secrets.DOCKER_USERNAME }}
docker-password: ${{ secrets.DOCKER_PASSWORD }}
slack-webhook: ${{ secrets.SLACK_WEBHOOK }}
sonatype-password: ${{ secrets.SONATYPE_PASSWORD }}
7 changes: 2 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
required: true
branch:
description: Branch
default: master
default: main
required: true

jobs:
Expand All @@ -25,8 +25,5 @@ jobs:
gpg-passphrase: ${{ secrets.GPG_PASSPHRASE }}
gpg-public-key: ${{ secrets.GPG_PUBLIC_KEY }}
gpg-secret-key: ${{ secrets.GPG_SECRET_KEY }}
docker-username: ${{ secrets.DOCKER_USERNAME }}
docker-password: ${{ secrets.DOCKER_PASSWORD }}
sonatype-username: ${{ secrets.SONATYPE_USERNAME }}
sonatype-password: ${{ secrets.SONATYPE_PASSWORD }}
slack-webhook: ${{ secrets.SLACK_WEBHOOK }}
sonatype-password: ${{ secrets.SONATYPE_PASSWORD }}
4 changes: 2 additions & 2 deletions README.adoc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
= Spring Batch Redis
:linkattrs:
:project-owner: redis-developer
:project-owner: redis
:project-name: spring-batch-redis
:project-group: com.redis
:project-version: 4.2.0
Expand Down Expand Up @@ -92,4 +92,4 @@ If TTL >= 0 then an additional call is made to `EXPIRE` command.

== Usage

Refer to https://github.com/redis-developer/spring-batch-redis/blob/master/core/spring-batch-redis/src/test/java/com/redis/spring/batch/test/BatchTests.java[unit tests] for usage examples.
Refer to https://github.com/redis/spring-batch-redis/blob/master/core/spring-batch-redis/src/test/java/com/redis/spring/batch/test/BatchTests.java[unit tests] for usage examples.
12 changes: 6 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ config {
tags = ['spring', 'batch', 'redis']

links {
website = "https://github.com/redis-developer/${project.rootProject.name}"
issueTracker = "https://github.com/redis-developer/${project.rootProject.name}/issues"
scm = "https://github.com/redis-developer/${project.rootProject.name}.git"
website = "https://github.com/redis/${project.rootProject.name}"
issueTracker = "https://github.com/redis/${project.rootProject.name}/issues"
scm = "https://github.com/redis/${project.rootProject.name}.git"
}

scm {
url = "https://github.com/redis-developer/${project.rootProject.name}"
connection = "scm:git:https://github.com/redis-developer/${project.rootProject.name}.git"
developerConnection = "scm:git:git@github.com:redis-developer/${project.rootProject.name}.git"
url = "https://github.com/redis/${project.rootProject.name}"
connection = "scm:git:https://github.com/redis/${project.rootProject.name}.git"
developerConnection = "scm:git:git@github.com:redis/${project.rootProject.name}.git"
}

specification {
Expand Down
2 changes: 1 addition & 1 deletion jreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ project:
description: Spring Batch Redis
longDescription: Spring Batch ItemReader and ItemWriter implementations for Redis.
links:
homepage: https://github.com/redis-developer/spring-batch-redis
homepage: https://github.com/redis/spring-batch-redis
authors:
- Julien Ruaux
license: Apache-2.0
Expand Down

0 comments on commit 3ede2ab

Please sign in to comment.