Skip to content

Commit eeaacb3

Browse files
committed
Fix url for redis-oss-release-automation
1 parent bbb4405 commit eeaacb3

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/actions/apply-docker-version/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ runs:
1717
- name: Checkout common functions
1818
uses: actions/checkout@v4
1919
with:
20-
repository: redis/redis-oss-release-automation
20+
repository: redis-developer/redis-oss-release-automation
2121
ref: main
2222
path: redis-oss-release-automation
2323

.github/workflows/pre-merge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
uses: actions/checkout@v4
5151
- name: Ensure release branch
5252
if: ${{ inputs.release_tag }}
53-
uses: redis/redis-oss-release-automation/.github/actions/ensure-release-branch@main
53+
uses: redis-developer/redis-oss-release-automation/.github/actions/ensure-release-branch@main
5454
with:
5555
release_tag: ${{ inputs.release_tag }}
5656
gh_token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/release_build_and_test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@ jobs:
3232
password: ${{ secrets.GITHUB_TOKEN }}
3333

3434
- name: Validate Redis Release Archive
35-
uses: redis/redis-oss-release-automation/.github/actions/validate-redis-release-archive@main
35+
uses: redis-developer/redis-oss-release-automation/.github/actions/validate-redis-release-archive@main
3636
with:
3737
release_tag: ${{ github.event.inputs.release_tag }}
3838

3939
- name: Ensure Release Branch
4040
id: ensure-branch
41-
uses: redis/redis-oss-release-automation/.github/actions/ensure-release-branch@main
41+
uses: redis-developer/redis-oss-release-automation/.github/actions/ensure-release-branch@main
4242
with:
4343
release_tag: ${{ github.event.inputs.release_tag }}
4444
allow_modify: true
@@ -68,15 +68,15 @@ jobs:
6868

6969
- name: Ensure Release Branch
7070
id: ensure-branch
71-
uses: redis/redis-oss-release-automation/.github/actions/ensure-release-branch@main
71+
uses: redis-developer/redis-oss-release-automation/.github/actions/ensure-release-branch@main
7272
with:
7373
release_tag: ${{ github.event.inputs.release_tag }}
7474
allow_modify: false
7575
gh_token: ${{ secrets.GITHUB_TOKEN }}
7676

7777
- name: Merge back to release branch
7878
id: merge-back
79-
uses: redis/redis-oss-release-automation/.github/actions/merge-branches-verified@main
79+
uses: redis-developer/redis-oss-release-automation/.github/actions/merge-branches-verified@main
8080
with:
8181
from_branch: ${{ steps.ensure-branch.outputs.release_version_branch }}
8282
to_branch: ${{ steps.ensure-branch.outputs.release_branch }}

.github/workflows/release_publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
echo "release_version=$RELEASE_VERSION" >> $GITHUB_OUTPUT
6767
6868
- name: Create version tag
69-
uses: redis/redis-oss-release-automation/.github/actions/create-tag-verified@main
69+
uses: redis-developer/redis-oss-release-automation/.github/actions/create-tag-verified@main
7070
with:
7171
tag: v${{ steps.parse-release.outputs.release_version }}
7272
ref: ${{ steps.parse-release.outputs.release_commit_sha }}

0 commit comments

Comments
 (0)